类 CoreAuditTrailConfigResourceImpl
- java.lang.Object
-
- net.sinodawn.module.sys.at.resource.impl.CoreAuditTrailConfigResourceImpl
-
- 所有已实现的接口:
GenericResource<CoreAuditTrailConfigService,CoreAuditTrailConfigBean,String>,CoreAuditTrailConfigResource
@RestController public class CoreAuditTrailConfigResourceImpl extends Object implements CoreAuditTrailConfigResource
-
-
构造器概要
构造器 构造器 说明 CoreAuditTrailConfigResourceImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidaudit(String id, RestJsonWrapperBean wrapper)voidcancel(String id, RestJsonWrapperBean wrapper)CoreAuditTrailConfigServicegetService()Page<CoreAuditTrailConfigTreeDTO>selectAuditTrailableTreePagination(RestJsonWrapperBean wrapper)Page<CoreAuditTrailConfigLineBean>selectAuditTrailConfigLineListByConfig(String id, RestJsonWrapperBean wrapper)-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 net.sinodawn.framework.support.base.resource.GenericResource
delete, getSinoAttrsMybatisMapper, insert, instantSave, print, save, selectByRole, selectColumnById, selectDetail, selectPagination, selectRawPagination, selectSearchablePagination, selectStatus, swap, validate, validateUnique, validateUnique
-
-
-
-
方法详细资料
-
getService
public CoreAuditTrailConfigService getService()
-
selectAuditTrailableTreePagination
@RequestMapping(value="/audit-trailable/tree-grid", method=POST) public Page<CoreAuditTrailConfigTreeDTO> selectAuditTrailableTreePagination(RestJsonWrapperBean wrapper)
-
selectAuditTrailConfigLineListByConfig
@RequestMapping(value="/{id}/at-config-lines", method=POST) public Page<CoreAuditTrailConfigLineBean> selectAuditTrailConfigLineListByConfig(@PathVariable String id, RestJsonWrapperBean wrapper)
-
audit
@RequestMapping(value="/{id}/at-config-lines/action/audit", method=PUT) public void audit(@PathVariable String id, RestJsonWrapperBean wrapper)- 指定者:
audit在接口中CoreAuditTrailConfigResource
-
cancel
@RequestMapping(value="/{id}/at-config-lines/action/cancel", method=PUT) public void cancel(@PathVariable String id, RestJsonWrapperBean wrapper)- 指定者:
cancel在接口中CoreAuditTrailConfigResource
-
-