潘志宝
2024-09-05 7fd198b8ebe97cd06b10f96b9179caebe679783c
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
70
71
72
73
74
75
76
77
78
79
80
package com.iailab.module.model.mcs.sche.controller;
 
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.model.mcs.sche.entity.StScheduleUserEntity;
import com.iailab.module.model.mcs.sche.service.StScheduleUserService;
import com.iailab.module.model.mcs.sche.vo.StScheduleUserPageReqVO;
import com.iailab.module.model.mcs.sche.vo.StScheduleUserRespVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
 
import static com.iailab.framework.common.pojo.CommonResult.error;
import static com.iailab.framework.common.pojo.CommonResult.success;
 
/**
 * @author PanZhibao
 * @date 2021年07月20日 15:34
 */
@RestController
@RequestMapping("/sche/schedule-user")
public class StScheduleUserController {
    @Autowired
    private StScheduleUserService stScheduleUserService;
 
    /**
     * 调度用户类型列表
     */
    @GetMapping("/list")
    public  CommonResult<PageResult<StScheduleUserRespVO>> page(@Validated StScheduleUserPageReqVO reqVO) {
        PageResult<StScheduleUserEntity> page = stScheduleUserService.page(reqVO);
 
        return success(BeanUtils.toBean(page, StScheduleUserRespVO.class));
    }
 
    /**
     * 调度用户类型信息
     */
    @GetMapping("/get")
    public CommonResult<StScheduleUserEntity> info(@RequestParam("id") String id) {
        StScheduleUserEntity scheduleUser = stScheduleUserService.selectById(id);
        return success(scheduleUser);
    }
 
    /**
     * 保存调度用户类型
     */
    @PostMapping("/create")
    public CommonResult<Boolean> save(@RequestBody StScheduleUserEntity scheduleUser) {
        int count = stScheduleUserService.check(scheduleUser);
        if (count > 0) {
            return error(999, "名称或编号重复");
        }
        stScheduleUserService.saveScheduleUser(scheduleUser);
        return success(true);
    }
 
    /**
     * 修改调度用户类型
     */
    @PutMapping("/update")
    public CommonResult<Boolean> update(@RequestBody StScheduleUserEntity scheduleUser) {
        int count = stScheduleUserService.check(scheduleUser);
        if (count > 0) {
            return error(999, "名称或编号重复");
        }
        stScheduleUserService.update(scheduleUser);
        return success(true);
    }
 
    /**
     * 删除调度用户类型
     */
    @DeleteMapping("/delete")
    public CommonResult<Boolean> delete(@RequestParam("id") String id) {
        stScheduleUserService.deleteBatch(new String[]{id});
        return success(true);
    }
}