“djh”
13 小时以前 c1628ae5526ffae9cb12e70778cac8195c405382
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
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.web.bind.annotation.*;
 
@Api(tags = "内审管理")
@RestController
@RequestMapping("/internal/audit")
public class InternalAuditController {
 
    @Autowired
    private InternalAuditPlanService planService;
    @Autowired
    private InternalAuditPersonService personService;
    @Autowired
    private InternalAuditEvaluateService evaluateService;
    @Autowired
    private InternalAuditCarryService carryService;
 
    @Autowired
    private ProjectResearchService researchService;
 
    @Autowired
    private ProjectDeliveryService deliveryService;
 
    @Autowired
    private AnnualReportService annualReportService;
 
 
    @Autowired
    private CustomerService customerService;
 
 
    //内审策划
    /**
     * 内审策划列表
     * @param plan
     * @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("/plan/list")
    public CommonResult listPlan(InternalAuditPlan plan){
        return CommonResult.success(planService.selectPlanList(plan));
    }
 
 
    /**
     * 内审策划新增
     * @param plan
     * @return
     */
    @ApiOperation(value = "内审策划新增")
    @PostMapping("/plan/insert")
    public CommonResult insertQuality(@RequestBody InternalAuditPlan plan){
        return planService.insertPlan(plan);
    }
 
    /**
     * 内审策划修改
     * @param plan
     * @return
     */
    @ApiOperation(value = "内审策划修改")
    @PostMapping("/plan/update")
    public CommonResult updateQuality(@RequestBody InternalAuditPlan plan){
        return planService.updatePlan(plan);
    }
 
    /**
     * 内审策划删除
     * @param planId
     * @return
     */
    @ApiOperation(value = "内审策划删除")
    @GetMapping("/plan/deleted")
    public CommonResult deletedQuality(@RequestParam("planId") Integer planId){
        return planService.deletedPlan(planId);
    }
 
 
    /**
     * 内审员列表
     * @param person
     * @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("/person/list")
    public CommonResult listPerson(InternalAuditPerson person){
        return CommonResult.success(personService.selectPersonList(person));
    }
 
 
    /**
     * 内审员新增
     * @param person
     * @return
     */
    @ApiOperation(value = "内审员新增")
    @PostMapping("/person/insert")
    public CommonResult insertPerson(@RequestBody InternalAuditPerson person){
        return personService.insertPerson(person);
    }
 
    /**
     * 内审员修改
     * @param person
     * @return
     */
    @ApiOperation(value = "内审员修改")
    @PostMapping("/person/update")
    public CommonResult updatePerson(@RequestBody InternalAuditPerson person){
        return personService.updatePerson(person);
    }
 
    /**
     * 内审员删除
     * @param personId
     * @return
     */
    @ApiOperation(value = "内审员删除")
    @GetMapping("/person/deleted")
    public CommonResult deletedPerson(@RequestParam("personId") Integer personId){
        return personService.deletedPerson(personId);
    }
 
 
    /**
     * 内审评定列表
     * @param evaluate
     * @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("/evaluate/list")
    public CommonResult listEvaluate(InternalAuditEvaluate evaluate){
        return CommonResult.success(evaluateService.selectEvaluateList(evaluate));
    }
 
 
    /**
     * 内审评定新增
     * @param evaluate
     * @return
     */
    @ApiOperation(value = "内审评定新增")
    @PostMapping("/evaluate/insert")
    public CommonResult insertEvaluate(@RequestBody InternalAuditEvaluate evaluate){
        return evaluateService.insertEvaluate(evaluate);
    }
 
    /**
     * 内审评定修改
     * @param evaluate
     * @return
     */
    @ApiOperation(value = "内审评定修改")
    @PostMapping("/evaluate/update")
    public CommonResult updateEvaluate(@RequestBody InternalAuditEvaluate evaluate){
        return evaluateService.updateEvaluate(evaluate);
    }
 
    /**
     * 内审评定删除
     * @param evaluateId
     * @return
     */
    @ApiOperation(value = "内审评定删除")
    @GetMapping("/evaluate/deleted")
    public CommonResult deletedEvaluate(@RequestParam("evaluateId") Integer evaluateId){
        return evaluateService.deletedEvaluate(evaluateId);
    }
 
 
 
    /**
     * 内审计划实施
     * @param carry
     * @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("/carry/list")
    public CommonResult listCarry(InternalAuditCarry carry){
        return CommonResult.success(carryService.selectCarryList(carry));
    }
 
 
    /**
     * 内审计划实施
     * @param carry
     * @return
     */
    @ApiOperation(value = "内审计划实施新增")
    @PostMapping("/carry/insert")
    public CommonResult insertCarry(@RequestBody InternalAuditCarry carry){
        return carryService.insertCarry(carry);
    }
 
    /**
     * 内审计划实施
     * @param carry
     * @return
     */
    @ApiOperation(value = "内审计划实施修改")
    @PostMapping("/carry/update")
    public CommonResult updateCarry(@RequestBody InternalAuditCarry carry){
        return carryService.updateCarry(carry);
    }
 
    /**
     * 内审计划实施
     * @param carryId
     * @return
     */
    @ApiOperation(value = "内审计划实施删除")
    @GetMapping("/carry/deleted")
    public CommonResult deletedCarry(@RequestParam("carryId") Integer carryId){
        return carryService.deletedCarry(carryId);
    }
 
 
 
 
    /**
     * 顾客满意度列表
     * @param customer
     * @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("/customer/list")
    public CommonResult listCustomer(Customer customer){
        return CommonResult.success(customerService.selectCustomerList(customer));
    }
 
 
    /**
     * 顾客满意度新增
     * @param customer
     * @return
     */
    @ApiOperation(value = "顾客满意度新增")
    @PostMapping("/customer/insert")
    public CommonResult insertCustomer(@RequestBody Customer customer){
        return customerService.insertCustomer(customer);
    }
 
    /**
     * 顾客满意度修改
     * @param customer
     * @return
     */
    @ApiOperation(value = "顾客满意度修改")
    @PostMapping("/customer/update")
    public CommonResult updateCustomer(@RequestBody Customer customer){
        return customerService.updateCustomer(customer);
    }
 
    /**
     * 顾客满意度删除
     * @param customerId
     * @return
     */
    @ApiOperation(value = "顾客满意度删除")
    @GetMapping("/customer/deleted")
    public CommonResult deletedCustomer(@RequestParam("customerId") Integer customerId){
        return customerService.deletedCustomer(customerId);
    }
 
    /**
     * 在研项目
     * @param projectResearch
     * @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("/research/list")
    public CommonResult listResearch(ProjectResearch projectResearch){
        return CommonResult.success(researchService.selectResearchList(projectResearch));
    }
 
 
    /**
     * 在研项目新增
     * @param projectResearch
     * @return
     */
    @ApiOperation(value = "在研项目新增")
    @PostMapping("/research/insert")
    public CommonResult insertResearch(@RequestBody ProjectResearch projectResearch){
        return researchService.insertResearch(projectResearch);
    }
 
    /**
     * 在研项目修改
     * @param projectResearch
     * @return
     */
    @ApiOperation(value = "在研项目修改")
    @PostMapping("/research/update")
    public CommonResult updateResearch(@RequestBody ProjectResearch projectResearch){
        return researchService.updateResearch(projectResearch);
    }
 
    /**
     * 在研项目删除
     * @param researchId
     * @return
     */
    @ApiOperation(value = "在研项目删除")
    @GetMapping("/research/deleted")
    public CommonResult deletedResearch(@RequestParam("researchId") Integer researchId){
        return researchService.deletedResearch(researchId);
    }
 
 
    /**
     * 交付项目
     * @param projectDelivery
     * @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("/delivery/list")
    public CommonResult listDelivery(ProjectDelivery projectDelivery){
        return CommonResult.success(deliveryService.selectDeliveryList(projectDelivery));
    }
 
 
    /**
     *交付项目新增
     * @param projectDelivery
     * @return
     */
    @ApiOperation(value = "交付项目新增")
    @PostMapping("/delivery/insert")
    public CommonResult insertDelivery(@RequestBody ProjectDelivery projectDelivery){
        return deliveryService.insertDelivery(projectDelivery);
    }
 
    /**
     * 交付项目修改
     * @param projectDelivery
     * @return
     */
    @ApiOperation(value = "交付项目修改")
    @PostMapping("/delivery/update")
    public CommonResult updateDelivery(@RequestBody ProjectDelivery projectDelivery){
        return deliveryService.updateDelivery(projectDelivery);
    }
 
    /**
     * 交付项目删除
     * @param deliveryId
     * @return
     */
    @ApiOperation(value = "交付项目删除")
    @GetMapping("/delivery/deleted")
    public CommonResult deletedDelivery(@RequestParam("deliveryId") Integer deliveryId){
        return deliveryService.deletedDelivery(deliveryId);
    }
 
 
 
    /**
     * 年度报告
     * @param annualReport
     * @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("/annual/list")
    public CommonResult listAnnual(AnnualReport annualReport){
        return CommonResult.success(annualReportService.selectAnnualList(annualReport));
    }
 
 
    /**
     *年度报告新增
     * @param annualReport
     * @return
     */
    @ApiOperation(value = "年度报告新增")
    @PostMapping("/annual/insert")
    public CommonResult insertAnnual(@RequestBody AnnualReport annualReport){
        return annualReportService.insertAnnual(annualReport);
    }
 
    /**
     * 年度报告修改
     * @param annualReport
     * @return
     */
    @ApiOperation(value = "年度报告修改")
    @PostMapping("/annual/update")
    public CommonResult updateAnnual(@RequestBody AnnualReport annualReport){
        return annualReportService.updateAnnual(annualReport);
    }
 
    /**
     * 年度报告删除
     * @param annualId
     * @return
     */
    @ApiOperation(value = "年度报告删除")
    @GetMapping("/annual/deleted")
    public CommonResult deletedAnnual(@RequestParam("annualId") Integer annualId){
        return annualReportService.deletedAnnual(annualId);
    }
 
 
 
 
 
 
}