“djh”
11 小时以前 22308ccdd532d105598663f90a39285697f723e8
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
package com.gkhy.exam.admin.controller.web;
 
import com.gkhy.exam.common.api.CommonResult;
import com.gkhy.exam.system.domain.*;
import com.gkhy.exam.system.service.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
 
@Api(tags = "环境需求风险管理")
@RestController
@RequestMapping("/composite")
public class EnvironmentDemandRiskController {
 
    @Autowired
    private FactorDiscernService factorDiscernService;
    @Autowired
    private FactorControlService factorControlService;
 
    @Autowired
    private ExpectDiscrenService expectDiscrenService;
    @Autowired
    private ExpectEvaluateService evaluateService;
 
    @Autowired
    private RiskManageService riskManageService;
    @Autowired
    private RiskMonitorService riskMonitorService;
 
 
    /**
     * 内外部环境要素识别
     * @param factorDiscern
     * @return
     */
    @ApiOperation(value = "内外部环境要素识别(分页)")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
    })
    @GetMapping("/factor/discern/list")
    public CommonResult selectFactorDiscernList(FactorDiscern factorDiscern){
        return CommonResult.success(factorDiscernService.selectFactorDiscernList(factorDiscern));
    }
 
    @ApiOperation(value = "内外部环境要素识别")
    @GetMapping("/factor/discern/listAll")
    public CommonResult selectFactorDiscernListAll(FactorDiscern factorDiscern){
        return factorDiscernService.selectFactorDiscernListAll(factorDiscern);
    }
 
    /**
     * 内外部环境要素识别新增
     * @param factorDiscern
     * @return
     */
    @ApiOperation(value = "内外部环境要素识别新增")
    @PostMapping("/factor/discern/insert")
    public CommonResult insertFactorDiscern(@RequestBody FactorDiscern factorDiscern){
        return factorDiscernService.insertFactorDiscern(factorDiscern);
    }
 
    /**
     * 内外部环境要素识别修改
     * @param factorDiscern
     * @return
     */
    @ApiOperation(value = "内外部环境要素识别修改")
    @PostMapping("/factor/discern/update")
    public CommonResult updateFactorDiscern(@RequestBody FactorDiscern factorDiscern){
        return factorDiscernService.updateFactorDiscern(factorDiscern);
    }
 
    /**
     * 内外部环境要素识别删除
     * @param factorDiscrenId
     * @return
     */
    @ApiOperation(value = "内外部环境要素识别删除")
    @GetMapping("/factor/discern/deleted")
    public CommonResult deletedFactorDiscern(@RequestParam("factorDiscrenId") Integer factorDiscrenId){
        return factorDiscernService.deletedFactorDiscern(factorDiscrenId);
    }
 
 
    /**
     * 内外部环境要素控制
     * @param factorControl
     * @return
     */
    @ApiOperation(value = "内外部环境要素控制(分页)")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
    })
    @GetMapping("/factor/control/list")
    public CommonResult selectFactorControlList(FactorControl factorControl){
        return CommonResult.success(factorControlService.selectFactorControlList(factorControl));
    }
 
    /**
     * 内外部环境要素识别新增
     * @param factorControl
     * @return
     */
    @ApiOperation(value = "内外部环境要素控制新增")
    @PostMapping("/factor/control/insert")
    public CommonResult insertFactorControl(@RequestBody FactorControl factorControl){
        return factorControlService.insertFactorControl(factorControl);
    }
 
    /**
     * 内外部环境要素识别修改
     * @param factorControl
     * @return
     */
    @ApiOperation(value = "内外部环境要素控制修改")
    @PostMapping("/factor/control/update")
    public CommonResult updateFactorControl(@RequestBody FactorControl factorControl){
        return factorControlService.updateFactorControl(factorControl);
    }
 
    /**
     * 内外部环境要素识别删除
     * @param factorControlId
     * @return
     */
    @ApiOperation(value = "内外部环境要素控制删除")
    @GetMapping("/factor/control/deleted")
    public CommonResult deletedFactorControl(@RequestParam("factorControlId") Integer factorControlId){
        return factorControlService.deletedFactorControl(factorControlId);
    }
 
    /**
     * 相关方需求识别
     * @param expectDiscren
     * @return
     */
    @ApiOperation(value = "相关方需求识别(分页)")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
    })
    @GetMapping("/expect/discren/list")
    public CommonResult selectExpectDiscrenList(ExpectDiscren expectDiscren){
        return CommonResult.success(expectDiscrenService.selectExpectDiscrenList(expectDiscren));
    }
    @ApiOperation(value = "相关方需求识别")
    @GetMapping("/expect/discren/listAll")
    public CommonResult selectExpectDiscrenListAll(ExpectDiscren expectDiscren){
        return expectDiscrenService.selectExpectDiscrenListAll(expectDiscren);
    }
 
 
    /**
     * 相关方需求识别新增
     * @param expectDiscren
     * @return
     */
    @ApiOperation(value = "相关方需求识别新增")
    @PostMapping("/expect/discren/insert")
    public CommonResult insertFactorControl(@RequestBody ExpectDiscren expectDiscren){
        return expectDiscrenService.insertExpectDiscren(expectDiscren);
    }
 
    /**
     * 相关方需求识别修改
     * @param expectDiscren
     * @return
     */
    @ApiOperation(value = "相关方需求识别修改")
    @PostMapping("/expect/discren/update")
    public CommonResult updateExpectDiscren(@RequestBody ExpectDiscren expectDiscren){
        return expectDiscrenService.updateExpectDiscren(expectDiscren);
    }
 
    /**
     * 相关方需求识别删除
     * @param expectDiscrenId
     * @return
     */
    @ApiOperation(value = "相关方需求识别删除")
    @GetMapping("/expect/discren/deleted")
    public CommonResult deletedExpectDiscren(@RequestParam("expectDiscrenId") Integer expectDiscrenId){
        return expectDiscrenService.deletedExpectDiscren(expectDiscrenId);
    }
 
    /**
     * 相关方需求评价
     * @param expectEvaluate
     * @return
     */
    @ApiOperation(value = "相关方需求评价(分页)")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
    })
    @GetMapping("/expect/evaluate/list")
    public CommonResult selectExpectEvaluateList(ExpectEvaluate expectEvaluate){
        return CommonResult.success(evaluateService.selectExpectEvaluateList(expectEvaluate));
    }
 
    /**
     * 相关方需求识别新增
     * @param expectEvaluate
     * @return
     */
    @ApiOperation(value = "相关方需求评价新增")
    @PostMapping("/expect/evaluate/insert")
    public CommonResult insertExpectEvaluate(@RequestBody ExpectEvaluate expectEvaluate){
        return evaluateService.insertExpectEvaluate(expectEvaluate);
    }
 
    /**
     * 相关方需求识别修改
     * @param expectEvaluate
     * @return
     */
    @ApiOperation(value = "相关方需求评价修改")
    @PostMapping("/expect/evaluate/update")
    public CommonResult updateExpectEvaluate(@RequestBody ExpectEvaluate expectEvaluate){
        return evaluateService.updateExpectEvaluate(expectEvaluate);
    }
 
    /**
     * 相关方需求识别删除
     * @param expectEvaluateId
     * @return
     */
    @ApiOperation(value = "相关方需求评价删除")
    @GetMapping("/expect/evaluate/deleted")
    public CommonResult deletedExpectEvaluate(@RequestParam("expectEvaluateId") Integer expectEvaluateId){
        return evaluateService.deletedExpectEvaluate(expectEvaluateId);
    }
 
 
 
    /**
     * 风险管理控制
     * @param riskManage
     * @return
     */
    @ApiOperation(value = "风险管理控制(分页)")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
    })
    @GetMapping("/risk/manage/list")
    public CommonResult selectRiskManageList(RiskManage riskManage){
        return CommonResult.success(riskManageService.selectRiskManageList(riskManage));
    }
    @ApiOperation(value = "风险管理控制")
    @GetMapping("/risk/manage/listAll")
    public CommonResult selectRiskManageListAll(RiskManage riskManage){
        return riskManageService.selectRiskManageListAll(riskManage);
    }
 
 
    /**
     * 风险管理控制新增
     * @param riskManage
     * @return
     */
    @ApiOperation(value = "风险管理控制新增")
    @PostMapping("/risk/manage/insert")
    public CommonResult insertRiskManage(@RequestBody RiskManage riskManage){
        return riskManageService.insertRiskManage(riskManage);
    }
 
    /**
     * 风险管理控制修改
     * @param riskManage
     * @return
     */
    @ApiOperation(value = "风险管理控制修改")
    @PostMapping("/risk/manage/update")
    public CommonResult updateRiskManage(@RequestBody RiskManage riskManage){
        return riskManageService.updateRiskManage(riskManage);
    }
 
    /**
     * 风险管理控制删除
     * @param riskManageId
     * @return
     */
    @ApiOperation(value = "风险管理控制删除")
    @GetMapping("/risk/manage/deleted")
    public CommonResult deletedRiskManage(@RequestParam("riskManageId") Integer riskManageId){
        return riskManageService.deletedRiskManage(riskManageId);
    }
 
 
    /**
     * 风险管理监视
     * @param riskMonitor
     * @return
     */
    @ApiOperation(value = "风险管理监视(分页)")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
    })
    @GetMapping("/risk/monitor/list")
    public CommonResult selectRiskMonitorList(RiskMonitor riskMonitor){
        return CommonResult.success(riskMonitorService.selectRiskMonitorList(riskMonitor));
    }
 
 
    /**
     * 风险管理监视新增
     * @param riskMonitor
     * @return
     */
    @ApiOperation(value = "风险管理监视新增")
    @PostMapping("/risk/monitor/insert")
    public CommonResult insertRiskMonitor(@RequestBody RiskMonitor riskMonitor){
        return riskMonitorService.insertRiskMonitor(riskMonitor);
    }
 
    /**
     * 风险管理监视修改
     * @param riskMonitor
     * @return
     */
    @ApiOperation(value = "风险管理监视修改")
    @PostMapping("/risk/monitor/update")
    public CommonResult updateRiskMonitor(@RequestBody RiskMonitor riskMonitor){
        return riskMonitorService.updateRiskMonitor(riskMonitor);
    }
 
    /**
     * 风险管理监视删除
     * @param riskMonitorId
     * @return
     */
    @ApiOperation(value = "风险管理监视删除")
    @GetMapping("/risk/monitor/deleted")
    public CommonResult deletedRiskMonitor(@RequestParam("riskMonitorId") Integer riskMonitorId){
        return riskMonitorService.deletedRiskMonitor(riskMonitorId);
    }
 
}