选煤厂生产管理平台后台代码
dongyukun
2024-12-10 3f07ab2e03e501ae55d1d1b0d031daf50c8e13e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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("/prod/work/prodAccident")
public class ProdAccidentController {
 
    @Resource
    private ProdAccidentService prodAccidentService;
 
    @PostMapping("/create")
    @Operation(summary = "新增")
    public CommonResult<String> createProdAccident(@Valid @RequestBody ProdAccidentEntity createEntity) {
        return success(prodAccidentService.create(createEntity));
    }
 
    @PutMapping("/update")
    @Operation(summary = "更新")
    public CommonResult<Boolean> 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<Boolean> 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<ProdAccidentEntity> getProdAccident(@RequestParam("id") String id) {
        ProdAccidentEntity data = prodAccidentService.getInfo(id);
        return success(BeanUtils.toBean(data, ProdAccidentEntity.class));
    }
 
    @GetMapping("/page")
    @Operation(summary = "分页")
    public CommonResult<PageResult<ProdAccidentEntity>> getProdAccidentPage(@Valid ProdAccidentPageReqVO pageVO) {
        PageResult<ProdAccidentEntity> pageResult = prodAccidentService.getPage(pageVO);
        return success(BeanUtils.toBean(pageResult, ProdAccidentEntity.class));
    }
}