选煤厂生产管理平台后台代码
dongyukun
2024-12-10 532d0b7f83815ebeb4be9aa1f7a6683ede831b6a
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
68
69
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.DutyInfoEntity;
import com.iailab.module.pms.production.work.service.DutyInfoService;
import com.iailab.module.pms.production.work.vo.DutyInfoPageReqVO;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import lombok.extern.slf4j.Slf4j;
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年04月27日 14:55:00
 */
@Slf4j
@RestController
@RequestMapping("/prod/work/onDutyInfo")
public class DutyInfoController {
 
    @Resource
    private DutyInfoService dutyInfoService;
 
    @PostMapping("/create")
    @Operation(summary = "新增")
    public CommonResult<String> createDutyInfo(@Valid @RequestBody DutyInfoEntity createEntity) {
        return success(dutyInfoService.create(createEntity));
    }
 
    @PutMapping("/update")
    @Operation(summary = "更新")
    public CommonResult<Boolean> updateDutyInfo(@Valid @RequestBody DutyInfoEntity updateEntity) {
        dutyInfoService.update(updateEntity);
        return success(true);
    }
 
    @DeleteMapping("/delete")
    @Operation(summary = "删除")
    @Parameter(name = "id", description = "ID", required = true, example = "1024")
    public CommonResult<Boolean> deleteDutyInfo(@RequestParam("id") String id) {
        dutyInfoService.delete(id);
        return success(true);
    }
 
    @GetMapping("/get")
    @Operation(summary = "详情")
    @Parameter(name = "id", description = "ID", required = true, example = "1024")
    public CommonResult<DutyInfoEntity> getDutyInfo(@RequestParam("id") String id) {
        DutyInfoEntity data = dutyInfoService.getInfo(id);
        return success(BeanUtils.toBean(data, DutyInfoEntity.class));
    }
 
    @GetMapping("/page")
    @Operation(summary = "分页")
    public CommonResult<PageResult<DutyInfoEntity>> getDutyInfoPage(@Valid DutyInfoPageReqVO pageVO) {
        PageResult<DutyInfoEntity> pageResult = dutyInfoService.getPage(pageVO);
        return success(BeanUtils.toBean(pageResult, DutyInfoEntity.class));
    }
}