懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package cn.stylefeng.guns.modular.cm.passingStationCollection.controller;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.bs.equipmentInfo.model.params.EquipmentInfoParam;
import cn.stylefeng.guns.modular.bs.equipmentInfo.model.result.EquipmentInfoResult;
import cn.stylefeng.guns.modular.cm.passingStationCollection.entity.PassingStationCollection;
import cn.stylefeng.guns.modular.cm.passingStationCollection.model.params.PassingStationCollectionParam;
import cn.stylefeng.guns.modular.cm.passingStationCollection.model.result.PassingStationCollectionResult;
import cn.stylefeng.guns.modular.cm.passingStationCollection.service.PassingStationCollectionService;
import cn.stylefeng.roses.core.base.controller.BaseController;
import cn.stylefeng.roses.kernel.model.response.ResponseData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
 
/**
 * 产品过站采集控制器
 *
 * @author zrm
 * @Date 2023-02-11 11:04:05
 */
@Controller
@RequestMapping("/passingStationCollection")
public class PassingStationCollectionController extends BaseController {
 
    private String PREFIX = "modular/cm/passingStationCollection";
 
    @Autowired
    private PassingStationCollectionService passingStationCollectionService;
 
    /**
     * 跳转到主页面
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @RequestMapping("")
    public String index() {
        return PREFIX + "/passingStationCollection.html";
    }
 
    @RequestMapping("/passingPassRate")
    public String passingPassRate() {
        return PREFIX + "/PassingPassRate.html";
    }
 
    /**
     * 新增页面
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @RequestMapping("/add")
    public String add() {
        return PREFIX + "/passingStationCollection_add.html";
    }
 
    /**
     * 编辑页面
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @RequestMapping("/edit")
    public String edit() {
        return PREFIX + "/passingStationCollection_edit.html";
    }
 
    /**
     * 新增接口
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @RequestMapping("/addItem")
    @ResponseBody
    public ResponseData addItem(PassingStationCollectionParam passingStationCollectionParam) {
        this.passingStationCollectionService.add(passingStationCollectionParam);
        return ResponseData.success();
    }
 
    /**
     * 导出excel
     *
     * @author cl
     * @Date 2022-10-28
     */
    @RequestMapping("/exportTable")
    @ResponseBody
    public ResponseData exportTable(PassingStationCollectionParam passingStationCollectionParam) {
        List<PassingStationCollectionResult> list = passingStationCollectionService.exportTable(passingStationCollectionParam);
        return ResponseData.success(list);
    }
 
    /**
     * 编辑接口
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @RequestMapping("/editItem")
    @ResponseBody
    public ResponseData editItem(PassingStationCollectionParam passingStationCollectionParam) {
        this.passingStationCollectionService.update(passingStationCollectionParam);
        return ResponseData.success();
    }
 
    /**
     * 删除接口
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @RequestMapping("/delete")
    @ResponseBody
    public ResponseData delete(PassingStationCollectionParam passingStationCollectionParam) {
        this.passingStationCollectionService.delete(passingStationCollectionParam);
        return ResponseData.success();
    }
 
    /**
     * 查看详情接口
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @RequestMapping("/detail")
    @ResponseBody
    public ResponseData detail(PassingStationCollectionParam passingStationCollectionParam) {
        PassingStationCollection detail = this.passingStationCollectionService.getById(passingStationCollectionParam.getId());
        return ResponseData.success(detail);
    }
 
    /**
     * 查询列表
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @ResponseBody
    @RequestMapping("/list")
    public LayuiPageInfo list(PassingStationCollectionParam passingStationCollectionParam) {
        return this.passingStationCollectionService.findPageBySpec(passingStationCollectionParam);
    }
 
    /**
     * 过站合格率List
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @ResponseBody
    @RequestMapping("/passingPassRateList")
    public LayuiPageInfo passingPassRateList(PassingStationCollectionParam passingStationCollectionParam) {
        return this.passingStationCollectionService.passingPassRateList(passingStationCollectionParam);
    }
 
    /**
     * 过站合格率List
     *
     * @author zrm
     * @Date 2023-02-11
     */
    @ResponseBody
    @RequestMapping("/PassRate")
    public LayuiPageInfo PassRate(PassingStationCollectionParam passingStationCollectionParam) {
        return this.passingStationCollectionService.PassRate(passingStationCollectionParam);
    }
 
    @ResponseBody
    @RequestMapping("/testqq")
    public ResponseData testqq(PassingStationCollectionParam passingStationCollectionParam) {
        List<PassingStationCollectionResult> results = this.passingStationCollectionService.snCodeSize("SYS20231102");
        return ResponseData.success(results.size());
    }
 
    @ResponseBody
    @CrossOrigin
    @RequestMapping("/bottomRightChart")
    public ResponseData bottomRightChart() {
        Map map = new HashMap();
        List weekLineData = new ArrayList();
        PassingStationCollectionResult maxSnCodeResult = passingStationCollectionService.getMaxSnCode();
        List<PassingStationCollectionResult> beatTimeList = passingStationCollectionService.getBeatTimeList(maxSnCodeResult.getSfcCode());
        for (PassingStationCollectionResult result : beatTimeList) {
            weekLineData.add(Integer.valueOf(result.getBeatTime()));
        }
        map.put("weekLineData", weekLineData);
        return ResponseData.success(map);
    }
 
    @ResponseBody
    @CrossOrigin
    @RequestMapping("/bottomRightChart1")
    public ResponseData bottomRightChart1() {
        Map map = new HashMap();
        List xList = new ArrayList();
        List yList = new ArrayList();
 
        PassingStationCollectionResult maxSnCodeResult = passingStationCollectionService.getMaxSnCode();
        List<PassingStationCollectionResult> beatTimeList = passingStationCollectionService.getBeatTimeList(maxSnCodeResult.getSfcCode());
        for (PassingStationCollectionResult result : beatTimeList) {
            xList.add(result.getLocationCode());
            yList.add(Integer.valueOf(result.getBeatTime()));
        }
        map.put("xList", xList);
        map.put("yList", yList);
        return ResponseData.success(map);
    }
 
    @ResponseBody
    @CrossOrigin
    @RequestMapping("/bottomLeftChart2")
    public ResponseData bottomLeftChart2() {
        Map map = new HashMap();
        List xList = new ArrayList();
        List<PassingStationCollectionResult> results = passingStationCollectionService.bottomLeftChart2();
        for (PassingStationCollectionResult result : results) {
            Map map2 = new HashMap();
            map2.put("name", result.getLocationCode());
            map2.put("value", Integer.valueOf(result.getNum()));
            xList.add(map2);
        }
        map.put("xList", xList);
        return ResponseData.success(map);
    }
 
}