| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package cn.com.goldenwater.dcproj.controller.rsml;
- import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstr;
- import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstrProject;
- import cn.com.goldenwater.dcproj.param.BisInspRsmlRgstrProjectParam;
- import cn.com.goldenwater.dcproj.service.BisInspRsmlRgstrProjectService;
- import cn.com.goldenwater.core.web.BaseController;
- import cn.com.goldenwater.core.web.BaseResponse;
- import cn.com.goldenwater.dcproj.service.BisInspRsmlRgstrService;
- import cn.com.goldenwater.id.util.UuidUtil;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import io.swagger.annotations.ApiParam;
- import org.apache.commons.lang3.StringUtils;
- import com.github.pagehelper.PageInfo;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RestController;
- import javax.servlet.http.HttpServletRequest;
- import java.util.Date;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-3-9
- */
- @Api(value = "BIS 水库工程实体管理",tags="BIS 水库工程实体管理")
- @RestController
- @RequestMapping("/bis/insp/rsml/rgstr/project")
- public class BisInspRsmlRgstrProjectController extends BaseController {
- private Logger logger = LoggerFactory.getLogger(getClass());
- @Autowired
- private BisInspRsmlRgstrProjectService bisInspRsmlRgstrProjectService;
- @Autowired
- private BisInspRsmlRgstrService bisInspRsmlRgstrService;
- @ApiOperation(value = "添加/修改水库工程实体")
- @RequestMapping(value = "", method = RequestMethod.POST)
- public BaseResponse<BisInspRsmlRgstrProject> insert(@ApiParam(name = "bisInspRsmlRgstrProject", value = "BisInspRsmlRgstrProject", required = true) @RequestBody BisInspRsmlRgstrProject bisInspRsmlRgstrProject) {
- if(StringUtils.isBlank(bisInspRsmlRgstrProject.getId())) {
- BisInspRsmlRgstrProjectParam projectParam = new BisInspRsmlRgstrProjectParam();
- projectParam.setRgstrId(bisInspRsmlRgstrProject.getRgstrId());
- List<BisInspRsmlRgstrProject> list = bisInspRsmlRgstrProjectService.findList(projectParam);
- if (list.size() > 0) {
- bisInspRsmlRgstrProject.setId(list.get(0).getId());
- bisInspRsmlRgstrProject.setUptm(new Date());
- bisInspRsmlRgstrProjectService.update(bisInspRsmlRgstrProject);
- } else {
- String uuid = UuidUtil.uuid(); // 生成uuid
- bisInspRsmlRgstrProject.setIntm(new Date());
- bisInspRsmlRgstrProject.setUptm(new Date());
- bisInspRsmlRgstrProject.setId(uuid);
- bisInspRsmlRgstrProjectService.insert(bisInspRsmlRgstrProject);
- }
- }else{
- bisInspRsmlRgstrProject.setUptm(new Date());
- bisInspRsmlRgstrProjectService.update(bisInspRsmlRgstrProject);
- }
- if (StringUtils.isNotBlank(bisInspRsmlRgstrProject.getRgstrId())) {
- BisInspRsmlRgstr rgstr = bisInspRsmlRgstrService.get(bisInspRsmlRgstrProject.getRgstrId());
- if (rgstr != null) {
- rgstr.setProjectState(bisInspRsmlRgstrProject.getStatus());
- if (!"2".equals(rgstr.getState())) {
- rgstr.setState("1");
- }
- bisInspRsmlRgstrService.update(rgstr);
- }
- }
- return buildSuccessResponse(bisInspRsmlRgstrProject);
- }
- @ApiOperation(value = "根据ID删除水库工程实体")
- @RequestMapping(value = "/del/{id}", method = RequestMethod.GET)
- public BaseResponse delete(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) {
- int ret = bisInspRsmlRgstrProjectService.delete(id);
- return buildSuccessResponse();
- }
- @ApiOperation(value = "根据ID获取水库工程实体(单表)")
- @RequestMapping(value = "/{id}", method = RequestMethod.GET)
- public BaseResponse<BisInspRsmlRgstrProject> get(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) {
- BisInspRsmlRgstrProject bisInspRsmlRgstrProject = bisInspRsmlRgstrProjectService.get(id);
- return buildSuccessResponse(bisInspRsmlRgstrProject);
- }
- @ApiOperation(value = "获取水库工程实体(列表所有)")
- @RequestMapping(value = "/list", method = RequestMethod.POST)
- public BaseResponse<List<BisInspRsmlRgstrProject>> list(@ApiParam(name = "bisInspRsmlRgstrProjectParam", value = "bisInspRsmlRgstrProjectParam", required = true) @RequestBody BisInspRsmlRgstrProjectParam bisInspRsmlRgstrProjectParam) {
- List<BisInspRsmlRgstrProject> bisInspRsmlRgstrProjectList = bisInspRsmlRgstrProjectService.findList(bisInspRsmlRgstrProjectParam);
- return buildSuccessResponse(bisInspRsmlRgstrProjectList);
- }
- @ApiOperation(value = "获取水库工程实体(列表--分页)")
- @RequestMapping(value = "/page", method = RequestMethod.POST)
- public BaseResponse<PageInfo<BisInspRsmlRgstrProject>> page(@ApiParam(name = "bisInspRsmlRgstrProjectParam", value = "bisInspRsmlRgstrProjectParam", required = true) @RequestBody BisInspRsmlRgstrProjectParam bisInspRsmlRgstrProjectParam) {
- PageInfo<BisInspRsmlRgstrProject> bisInspRsmlRgstrProjectList = bisInspRsmlRgstrProjectService.findPageInfo(bisInspRsmlRgstrProjectParam);
- return buildSuccessResponse(bisInspRsmlRgstrProjectList);
- }
- @ApiOperation(value = "根据rgstrId获取水库工程实体")
- @RequestMapping(value = "/getBy/{rgstrId}", method = RequestMethod.GET)
- public BaseResponse<BisInspRsmlRgstrProject> getBy(@ApiParam(name = "rgstrId", value = "rgstrId", required = true) @PathVariable String rgstrId, HttpServletRequest request) {
- BisInspRsmlRgstrProjectParam projectParam = new BisInspRsmlRgstrProjectParam();
- projectParam.setRgstrId(rgstrId);
- BisInspRsmlRgstrProject project = bisInspRsmlRgstrProjectService.getBy(projectParam);
- return buildSuccessResponse(project);
- }
- }
|