|
@@ -39,7 +39,7 @@ public class PlanController {
|
|
|
@Autowired
|
|
|
PlanFacade planFacade;
|
|
|
|
|
|
- @ApiOperation(value = "根据医院获取方案配置信息[by:wangfeng]", notes = "hospitalid :医院id 必填<br> ")
|
|
|
+ @ApiOperation(value = "根据医院获取方案配置信息[by:wangfeng]", notes = "planCode :方案编号 <br> ")
|
|
|
@PostMapping("/getSysPlanInfoDatas")
|
|
|
@SysLogger("getSysPlanInfoDatas")
|
|
|
@TokenAuth
|
|
@@ -48,7 +48,8 @@ public class PlanController {
|
|
|
return RespDTO.onSuc(data);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "保存更新方案配置信息[by:wangfeng]", notes = "保存更新方案配置信息")
|
|
|
+ @ApiOperation(value = "保存更新方案配置信息[by:wangfeng]", notes = "id:方案id <br> hospitalId :医院id 必传" +
|
|
|
+ "planName:方案名称 必传 <br> planCode:方案编号 必传<br> planStatus: 方案启动1:启动,0:不启用 必传")
|
|
|
@PostMapping("/savePlanInfoDatas")
|
|
|
@SysLogger("savePlanInfoDatas")
|
|
|
@Transactional
|
|
@@ -66,7 +67,7 @@ public class PlanController {
|
|
|
return RespDTO.onSuc(data);
|
|
|
}*/
|
|
|
|
|
|
- @ApiOperation(value = "删除方案配置信息[by:wangfeng]", notes = "删除方案配置信息")
|
|
|
+ @ApiOperation(value = "删除方案配置信息[by:wangfeng]", notes = "planId:方案id 必传")
|
|
|
@PostMapping("/cancelPlanDatas")
|
|
|
@SysLogger("cancelPlanDatas")
|
|
|
@Transactional
|
|
@@ -75,7 +76,7 @@ public class PlanController {
|
|
|
return RespDTO.onSuc(res);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "停用启用方案配置[by:wangfeng]", notes = "停用启用方案配置")
|
|
|
+ @ApiOperation(value = "停用启用方案配置[by:wangfeng]", notes = "id :方案id 必传 <br>status:状态必传 ")
|
|
|
@PostMapping("/revStopPlans")
|
|
|
@SysLogger("revStopPlans")
|
|
|
@Transactional
|