Browse Source

修改值班管理日志注解

zhongwei
段飞宇 1 year ago
parent
commit
2153729505
  1. 2
      hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyClassController.java
  2. 2
      hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyClassTypeController.java
  3. 2
      hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyMainController.java
  4. 6
      hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyRecController.java
  5. 2
      hzims-service/operational/src/main/java/com/hnac/hzims/operational/main/controller/MainSystemMonitoringController.java

2
hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyClassController.java

@ -56,7 +56,7 @@ public class ImsDutyClassController extends BladeController {
@ApiOperation(value = "分页", notes = "传入imsDutyClass") @ApiOperation(value = "分页", notes = "传入imsDutyClass")
@OperationAnnotation(moduleName = "值班管理",title = "值班配置",operatorType = OperatorType.MOBILE,businessType = @OperationAnnotation(moduleName = "值班管理",title = "值班配置",operatorType = OperatorType.MOBILE,businessType =
BusinessType.GENCODE,action BusinessType.GENCODE,action
= "列表(不分页)") = "查询班次设置数据")
public R<IPage<ImsDutyClassEntity>> list(ImsDutyClassEntity imsDutyClass, Query query) { public R<IPage<ImsDutyClassEntity>> list(ImsDutyClassEntity imsDutyClass, Query query) {
LambdaQueryWrapper<ImsDutyClassEntity> queryWrapper = Condition.getQueryWrapper(new ImsDutyClassEntity(),imsDutyClass); LambdaQueryWrapper<ImsDutyClassEntity> queryWrapper = Condition.getQueryWrapper(new ImsDutyClassEntity(),imsDutyClass);
if(null != imsDutyClass.getCreateDept()){ if(null != imsDutyClass.getCreateDept()){

2
hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyClassTypeController.java

@ -56,7 +56,7 @@ public class ImsDutyClassTypeController extends BladeController {
title = "值班配置", title = "值班配置",
operatorType = OperatorType.MOBILE, operatorType = OperatorType.MOBILE,
businessType = BusinessType.GENCODE, businessType = BusinessType.GENCODE,
action = "分页") action = "分页查询班次类型设置")
@ApiOperation(value = "分页", notes = "传入imsDutyClassType") @ApiOperation(value = "分页", notes = "传入imsDutyClassType")
public R<IPage<ImsDutyClassTypeEntity>> list(ImsDutyClassTypeEntity imsDutyClassType, Query query) { public R<IPage<ImsDutyClassTypeEntity>> list(ImsDutyClassTypeEntity imsDutyClassType, Query query) {
LambdaQueryWrapper<ImsDutyClassTypeEntity> queryWrapper = Condition.getQueryWrapper(new ImsDutyClassTypeEntity(), imsDutyClassType); LambdaQueryWrapper<ImsDutyClassTypeEntity> queryWrapper = Condition.getQueryWrapper(new ImsDutyClassTypeEntity(), imsDutyClassType);

2
hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyMainController.java

@ -138,7 +138,7 @@ public class ImsDutyMainController extends BladeController {
@ApiOperationSupport(order = 8) @ApiOperationSupport(order = 8)
@OperationAnnotation(moduleName = "值班管理", title = "排班计划", @OperationAnnotation(moduleName = "值班管理", title = "排班计划",
operatorType = OperatorType.MOBILE, operatorType = OperatorType.MOBILE,
businessType = BusinessType.GENCODE, action = "查询排班") businessType = BusinessType.GENCODE, action = "查询排班计划列表")
@ApiOperation(value = "查询排班", notes = "传年份和月份 year month") @ApiOperation(value = "查询排班", notes = "传年份和月份 year month")
public R schedulingList(@Valid @ApiParam(value = "年份", required = true) @RequestParam int year, public R schedulingList(@Valid @ApiParam(value = "年份", required = true) @RequestParam int year,
@ApiParam(value = "月份", required = true) @RequestParam int month, @ApiParam(value = "月份", required = true) @RequestParam int month,

6
hzims-service/operational/src/main/java/com/hnac/hzims/operational/duty/controller/ImsDutyRecController.java

@ -82,7 +82,7 @@ public class ImsDutyRecController extends BladeController {
*/ */
@OperationAnnotation(moduleName = "值班管理",title = "交接班记录",operatorType = OperatorType.MOBILE,businessType = @OperationAnnotation(moduleName = "值班管理",title = "交接班记录",operatorType = OperatorType.MOBILE,businessType =
BusinessType.GENCODE, BusinessType.GENCODE,
action = "分页--交接班记录") action = "分页查询交接班记录列表")
@GetMapping("/pageList") @GetMapping("/pageList")
@ApiOperationSupport(order = 3) @ApiOperationSupport(order = 3)
@ApiOperation(value = "分页--交接班记录", notes = "传入entity") @ApiOperation(value = "分页--交接班记录", notes = "传入entity")
@ -260,7 +260,7 @@ public class ImsDutyRecController extends BladeController {
@ApiOperationSupport(order = 6) @ApiOperationSupport(order = 6)
@OperationAnnotation(moduleName = "值班管理",title = "值班突发事件登记",operatorType = OperatorType.MOBILE,businessType = @OperationAnnotation(moduleName = "值班管理",title = "值班突发事件登记",operatorType = OperatorType.MOBILE,businessType =
BusinessType.GENCODE,action BusinessType.GENCODE,action
= "列表(不分页)") = "查询值班突发事件登记数据")
@ApiOperation(value = "查询突发事件记录", notes = "传入imsDutyEmergencyEntity") @ApiOperation(value = "查询突发事件记录", notes = "传入imsDutyEmergencyEntity")
public R queryEmergency( @Valid @RequestBody ImsDutyEmergencyVo imsDutyEmergencyVo,Query query) { public R queryEmergency( @Valid @RequestBody ImsDutyEmergencyVo imsDutyEmergencyVo,Query query) {
return iImsDutyEmergencyService.queryEntity(imsDutyEmergencyVo,query); return iImsDutyEmergencyService.queryEntity(imsDutyEmergencyVo,query);
@ -296,7 +296,7 @@ public class ImsDutyRecController extends BladeController {
@OperationAnnotation(moduleName = "值班管理", title = "值班日志配置", @OperationAnnotation(moduleName = "值班管理", title = "值班日志配置",
operatorType = OperatorType.MOBILE, operatorType = OperatorType.MOBILE,
businessType = BusinessType.GENCODE, businessType = BusinessType.GENCODE,
action = "查询分析实例模板") action = "查询值班日志配置数据")
public R queryAnalyseExample( AnalyseExample analyseExample,Query query) { public R queryAnalyseExample( AnalyseExample analyseExample,Query query) {
return iImsAnalyseExampleService.queryAnalyseExample(analyseExample,query); return iImsAnalyseExampleService.queryAnalyseExample(analyseExample,query);
} }

2
hzims-service/operational/src/main/java/com/hnac/hzims/operational/main/controller/MainSystemMonitoringController.java

@ -129,7 +129,7 @@ public class MainSystemMonitoringController {
@GetMapping("/listByAuthDept") @GetMapping("/listByAuthDept")
@OperationAnnotation(moduleName = "值班管理", @OperationAnnotation(moduleName = "值班管理",
title = "值班配置",operatorType = OperatorType.MOBILE,businessType = BusinessType.GENCODE,action title = "值班配置",operatorType = OperatorType.MOBILE,businessType = BusinessType.GENCODE,action
= "根据用户权限查询站点及部门") = "查询人员分组数据")
@ApiOperationSupport(order = 100) @ApiOperationSupport(order = 100)
@ApiOperation(value = "根据用户权限查询站点及部门", notes = "") @ApiOperation(value = "根据用户权限查询站点及部门", notes = "")
public R<List<StationDeptVo>> listByAuthDept() { public R<List<StationDeptVo>> listByAuthDept() {

Loading…
Cancel
Save