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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package com.iailab.module.prod.controller;
 
import com.iailab.common.annotation.LogOperation;
import com.iailab.common.dto.echarts.BarLineDTO;
import com.iailab.framework.common.page.PageData;
import com.iailab.common.utils.Constant;
import com.iailab.framework.common.pojo.CommonResult;
 
import com.iailab.framework.common.util.validation.ValidationUtils;
import com.iailab.framework.common.validation.group.AddGroup;
import com.iailab.framework.common.validation.group.DefaultGroup;
import com.iailab.framework.common.validation.group.UpdateGroup;
import com.iailab.module.prod.dto.IndexEvaluateSystemDTO;
import com.iailab.module.prod.entity.IndexEvaluateSystemEntity;
import com.iailab.module.prod.service.IndexEvaluateSystemService;
import io.swagger.v3.oas.annotations.tags.Tag;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.Parameters;
import javax.annotation.Resource;
import org.springframework.web.bind.annotation.*;
 
 
import java.util.List;
import java.util.Map;
 
/**
 * @author DongYukun
 * @Description
 * @createTime 2024年5月24日 21:58:00
 */
@RestController
@RequestMapping("/index/evaluate")
@Tag(name = "指标评价体系")
public class IndexEvaluateSystemController {
 
    @Resource
    private IndexEvaluateSystemService indexEvaluateSystemService;
    
    @GetMapping("page")
    @Operation(summary = "分页")
    @Parameters({
            @Parameter(name = Constant.PAGE, description = "当前页码,从1开始", required = true),
            @Parameter(name = Constant.LIMIT, description = "每页显示记录数", required = true),
            @Parameter(name = Constant.ORDER_FIELD, description = "排序字段"),
            @Parameter(name = Constant.ORDER, description = "排序方式,可选值(asc、desc)")
    })
    public CommonResult<PageData<IndexEvaluateSystemDTO>> page(@RequestParam Map<String, Object> params) {
        PageData<IndexEvaluateSystemDTO> page = indexEvaluateSystemService.page(params);
 
        return new CommonResult<PageData<IndexEvaluateSystemDTO>>().setData(page);
    }
 
    @GetMapping("systemWeightList")
    @Operation(summary = "获取指标体系权重")
    public CommonResult<Map<String,String>> systemWeightList() {
        Map<String,String> data = indexEvaluateSystemService.systemWeightList();
 
        return new CommonResult<Map<String,String>>().setData(data);
    }
 
    @PostMapping("updataSystemWeight")
    @Operation(summary = "修改指标体系权重")
    public CommonResult updataSystemWeight(@RequestBody Map<String, String> params) {
 
        indexEvaluateSystemService.updataSystemWeight(params);
 
        return new CommonResult();
    }
 
    @PostMapping("updataWeight")
    @Operation(summary = "修改指标权重")
    public CommonResult updataWeight(@RequestBody List<IndexEvaluateSystemEntity> list) {
 
        indexEvaluateSystemService.updataWeight(list);
 
        return new CommonResult();
    }
 
 
    @GetMapping("{id}")
    @Operation(summary = "信息")
    public CommonResult<IndexEvaluateSystemDTO> get(@PathVariable("id") String id) {
        IndexEvaluateSystemDTO data = indexEvaluateSystemService.get(id);
 
        return new CommonResult<IndexEvaluateSystemDTO>().setData(data);
    }
 
    @PostMapping
    @Operation(summary = "保存")
    @LogOperation("保存")
    public CommonResult save(@RequestBody IndexEvaluateSystemDTO dto) {
        //效验数据
        ValidationUtils.validate(dto, AddGroup.class, DefaultGroup.class);
 
        indexEvaluateSystemService.save(dto);
 
        return new CommonResult();
    }
 
    @PutMapping
    @Operation(summary = "修改")
    @LogOperation("修改")
    public CommonResult update(@RequestBody IndexEvaluateSystemDTO dto) {
        //效验数据
        ValidationUtils.validate(dto, UpdateGroup.class, DefaultGroup.class);
 
        indexEvaluateSystemService.update(dto);
 
        return new CommonResult();
    }
 
    @DeleteMapping
    @Operation(summary = "删除")
    @LogOperation("删除")
    public CommonResult delete(@RequestBody String[] ids) {
        indexEvaluateSystemService.delete(ids);
        return new CommonResult();
    }
 
    @GetMapping("chart/{pid}")
    @Operation(summary = "信息")
    public CommonResult<BarLineDTO> getChart(@PathVariable("pid") String pid) {
        BarLineDTO data = indexEvaluateSystemService.getChart(pid);
 
        return new CommonResult<BarLineDTO>().setData(data);
    }
}