| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package cn.com.goldenwater.dcproj.controller.cdep;
- import cn.com.goldenwater.dcproj.model.BisInspCdepRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspCdepRgstrParam;
- import cn.com.goldenwater.dcproj.service.BisInspCdepRgstrService;
- import cn.com.goldenwater.core.web.BaseController;
- import cn.com.goldenwater.core.web.BaseResponse;
- import com.github.pagehelper.PageInfo;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import io.swagger.annotations.ApiParam;
- import org.apache.commons.lang3.StringUtils;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.util.Assert;
- 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 java.util.Date;
- /**
- * @author zhangcheng xinjiang
- * @date 2020-11-19
- */
- @Api(value = "乙级检测单位管理",tags="乙级检测单位管理")
- @RestController
- @RequestMapping("/bis/insp/cdep")
- public class BisInspCdepRgstrController extends BaseController {
- private Logger logger = LoggerFactory.getLogger(getClass());
- @Autowired
- private BisInspCdepRgstrService bisInspCdepRgstrService;
- @ApiOperation(value = "添加或修改乙级检测单位登记表(新疆)")
- @RequestMapping(value = "", method = RequestMethod.POST)
- public BaseResponse<BisInspCdepRgstr> insert(@ApiParam(name = "bisInspCdepRgstr", value = "BisInspCdepRgstr", required = true) @RequestBody BisInspCdepRgstr bisInspCdepRgstr) {
- if (StringUtils.isBlank(bisInspCdepRgstr.getObjId())
- && StringUtils.isBlank(bisInspCdepRgstr.getId())
- && StringUtils.isBlank(bisInspCdepRgstr.getRgstrId())) {
- return buildFailResponse();
- }
- return buildSuccessResponse(bisInspCdepRgstrService.save(bisInspCdepRgstr));
- }
- @ApiOperation(value = "根据ID删除xxx")
- @RequestMapping(value = "delete/{id}", method = RequestMethod.POST)
- public BaseResponse delete(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) {
- int ret = bisInspCdepRgstrService.delete(id);
- return buildSuccessResponse();
- }
- @ApiOperation(value = "更新乙级检测单位登记表管理信息")
- @RequestMapping(value = "/update", method = RequestMethod.POST)
- public BaseResponse<BisInspCdepRgstr> update(@ApiParam(name = "bisInspCdepRgstr", value = "BisInspCdepRgstr", required = true) @RequestBody BisInspCdepRgstr bisInspCdepRgstr) {
- Assert.notNull(bisInspCdepRgstr.getId(), "主键id为必填参数");
- bisInspCdepRgstr.setUptm(new Date());
- int ret = bisInspCdepRgstrService.update(bisInspCdepRgstr);
- return buildSuccessResponse(bisInspCdepRgstr);
- }
- @ApiOperation(value = "根据ID获取乙级检测单位登记表(新疆)(单表)")
- @RequestMapping(value = "/{id}", method = RequestMethod.GET)
- public BaseResponse<BisInspCdepRgstr> get(@ApiParam(name = "id", value = "id", required = true) @PathVariable String id) {
- BisInspCdepRgstr bisInspCdepRgstr = bisInspCdepRgstrService.get(id);
- return buildSuccessResponse(bisInspCdepRgstr);
- }
- @ApiOperation(value = "乙级检测单位登记表(新疆)(列表--分页)")
- @RequestMapping(value = "/findPage", method = RequestMethod.POST)
- public BaseResponse<PageInfo<BisInspCdepRgstr>> page(@ApiParam(name = "bisInspCdepRgstrParam", value = "bisInspCdepRgstrParam", required = true)
- @RequestBody BisInspCdepRgstrParam bisInspCdepRgstrParam) {
- //此处记得在BisInspCdepRgstrParam类中增加plnaId字段
- PageInfo<BisInspCdepRgstr> bisInspCdepRgstrCollegeList = bisInspCdepRgstrService.findCdepPageInfo(bisInspCdepRgstrParam);
- return buildSuccessResponse(bisInspCdepRgstrCollegeList);
- }
- }
|