package com.iailab.module.pms.production.work.controller.admin; import com.iailab.framework.common.pojo.CommonResult; import com.iailab.framework.common.pojo.PageResult; import com.iailab.framework.common.util.object.BeanUtils; import com.iailab.module.pms.production.work.enity.ProdAccidentEntity; import com.iailab.module.pms.production.work.service.ProdAccidentService; import com.iailab.module.pms.production.work.vo.ProdAccidentPageReqVO; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Parameter; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import javax.validation.Valid; import static com.iailab.framework.common.pojo.CommonResult.success; /** * 生产事故 * * @author DongYukun * @Description * @createTime 2023年01月05日 15:09:00 */ @RestController @RequestMapping("/xmcpms/prod/work/prodAccident") public class ProdAccidentController { @Resource private ProdAccidentService prodAccidentService; @PostMapping("/create") @Operation(summary = "新增") public CommonResult createProdAccident(@Valid @RequestBody ProdAccidentEntity createEntity) { return success(prodAccidentService.create(createEntity)); } @PutMapping("/update") @Operation(summary = "更新") public CommonResult updateProdAccident(@Valid @RequestBody ProdAccidentEntity updateEntity) { prodAccidentService.update(updateEntity); return success(true); } @DeleteMapping("/delete") @Operation(summary = "删除") @Parameter(name = "id", description = "ID", required = true, example = "1024") public CommonResult deleteProdAccident(@RequestParam("id") String id) { prodAccidentService.delete(id); return success(true); } @GetMapping("/get") @Operation(summary = "详情") @Parameter(name = "id", description = "ID", required = true, example = "1024") public CommonResult getProdAccident(@RequestParam("id") String id) { ProdAccidentEntity data = prodAccidentService.getInfo(id); return success(BeanUtils.toBean(data, ProdAccidentEntity.class)); } @GetMapping("/page") @Operation(summary = "分页") public CommonResult> getProdAccidentPage(@Valid ProdAccidentPageReqVO pageVO) { PageResult pageResult = prodAccidentService.getPage(pageVO); return success(BeanUtils.toBean(pageResult, ProdAccidentEntity.class)); } }