houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.iailab.module.data.indexdata.controller.admin;
 
import com.iailab.module.data.common.utils.PageUtils;
import com.iailab.module.data.common.utils.R;
import com.iailab.framework.security.core.util.SecurityFrameworkUtils;
import com.iailab.module.data.indexdata.entity.IndexDataClockEntity;
import com.iailab.module.data.indexdata.service.IndexDataClockService;
import javax.annotation.Resource;
 
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.web.bind.annotation.*;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2022年09月08日 21:52:00
 */
@RestController
@RequestMapping("/data/index-data/clock")
@Tag(name = "数据采集-index-data-clock")
public class IndexDataClockController {
 
    @Resource
    private IndexDataClockService indexDataClockService;
 
    /**
     * 所有时钟配置列表
     */
    @GetMapping("/list")
    @Operation(summary = "查询列表")
    public R list(@RequestParam Map<String, Object> params){
        PageUtils page = indexDataClockService.queryPage(params);
        return R.ok().put("page", page);
    }
 
    /**
     * 采集点列表(全部)
     */
    @GetMapping("/list/all")
    public R queryAll(@RequestParam Map<String, Object> params){
        List<IndexDataClockEntity> data = indexDataClockService.queryList(params);
        return R.ok().put("data", data);
    }
 
    /**
     * 新增时钟配置
     *
     * @param indexDataClockEntity
     * @return
     */
    @PostMapping("/add")
    public R add(@RequestBody IndexDataClockEntity indexDataClockEntity) {
        int count = indexDataClockService.cheack(indexDataClockEntity);
        if (count > 0) {
            return R.error("名称或编号重复");
        }
        indexDataClockEntity.setCreateBy(SecurityFrameworkUtils.getLoginUserId().toString());
        indexDataClockEntity.setCreateTime(new Date());
        indexDataClockService.add(indexDataClockEntity);
        return R.ok();
    }
 
    /**
     * 更新时钟配置
     *
     * @param indexDataClockEntity
     * @return
     */
    @PostMapping("/update")
    public R update(@RequestBody IndexDataClockEntity indexDataClockEntity) {
        int count = indexDataClockService.cheack(indexDataClockEntity);
        if (count > 0) {
            return R.error("名称或编号重复");
        }
        indexDataClockEntity.setUpdateBy(SecurityFrameworkUtils.getLoginUserId().toString());
        indexDataClockService.update(indexDataClockEntity);
        return R.ok();
    }
 
    /**
     * 删除时钟配置
     *
     * @param params
     * @return
     */
    @PostMapping("/delete")
    public R delete(@RequestParam Map<String, Object> params) {
        String id = (String)params.get("id");
        indexDataClockService.deleteById(id);
        return R.ok();
    }
 
    /**
     * 时钟配置详情
     *
     * @param id
     * @return
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") String id){
        IndexDataClockEntity indexDataClockEntity = indexDataClockService.getInfoById(id);
        return R.ok().put("data", indexDataClockEntity);
    }
}