1.下发接口修改
2.工单接口开发
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.njcn.process.controller;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.njcn.common.pojo.annotation.OperateInfo;
|
||||
import com.njcn.common.pojo.constant.OperateType;
|
||||
import com.njcn.common.pojo.enums.common.LogEnum;
|
||||
@@ -8,7 +9,9 @@ import com.njcn.common.pojo.response.HttpResult;
|
||||
import com.njcn.common.utils.HttpResultUtil;
|
||||
import com.njcn.process.mapper.SupvPlanReturnMapper;
|
||||
import com.njcn.process.pojo.po.SupvPlanReturn;
|
||||
import com.njcn.process.service.ISupvPlanReturnService;
|
||||
import com.njcn.web.controller.BaseController;
|
||||
import com.njcn.web.pojo.param.BaseParam;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiImplicitParam;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
@@ -31,15 +34,26 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
@RequiredArgsConstructor
|
||||
public class SupvPlanReturnController extends BaseController {
|
||||
|
||||
private final SupvPlanReturnMapper supvPlanReturnMapper;
|
||||
private final ISupvPlanReturnService iSupvPlanReturnService;
|
||||
|
||||
@PostMapping("reject")
|
||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.ADD)
|
||||
@ApiOperation("新增技术监督计划")
|
||||
@ApiImplicitParam(name = "supvPlanParam",value = "请求体",required = true)
|
||||
public HttpResult<Object> reject(@RequestBody @Validated SupvPlanReturn supvPlanReturn){
|
||||
@ApiImplicitParam(name = "supvPlanReturn",value = "请求体",required = true)
|
||||
public HttpResult<Object> reject(@RequestBody SupvPlanReturn supvPlanReturn){
|
||||
String methodDescribe = getMethodDescribe("reject");
|
||||
supvPlanReturnMapper.insert(supvPlanReturn);
|
||||
iSupvPlanReturnService.add(supvPlanReturn);
|
||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||
}
|
||||
|
||||
|
||||
@PostMapping("pageList")
|
||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||
@ApiOperation("新增技术监督计划")
|
||||
@ApiImplicitParam(name = "supvPlanReturn",value = "请求体",required = true)
|
||||
public HttpResult<Page<SupvPlanReturn>> pageList(@RequestBody BaseParam baseParam){
|
||||
String methodDescribe = getMethodDescribe("pageList");
|
||||
Page<SupvPlanReturn> page = iSupvPlanReturnService.pageList(baseParam);
|
||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, page, methodDescribe);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user