| | |
| | | @RestController |
| | | @RequestMapping(AppConstant.APPLICATION_FLOW_NAME + "/follow") |
| | | @AllArgsConstructor |
| | | @PreAuth(RoleConstant.HAS_ROLE_ADMINISTRATOR) |
| | | @PreAuth("hasAnyRole('administrator', 'admin','jdgly','sqgly')") |
| | | @ApiIgnore |
| | | public class FlowFollowController { |
| | | |
| | |
| | | @RequestMapping(AppConstant.APPLICATION_FLOW_NAME + "/manager") |
| | | @AllArgsConstructor |
| | | @Api(value = "流程管理接口", tags = "流程管理接口") |
| | | @PreAuth(RoleConstant.HAS_ROLE_ADMINISTRATOR) |
| | | @PreAuth("hasAnyRole('administrator', 'admin','jdgly','sqgly')") |
| | | @ApiIgnore |
| | | public class FlowManagerController { |
| | | |
| | |
| | | @RestController |
| | | @RequestMapping(AppConstant.APPLICATION_FLOW_NAME + "/model") |
| | | @AllArgsConstructor |
| | | @PreAuth(RoleConstant.HAS_ROLE_ADMINISTRATOR) |
| | | @PreAuth("hasAnyRole('administrator', 'admin','jdgly','sqgly')") |
| | | @ApiIgnore |
| | | public class FlowModelController { |
| | | |