“djh”
19 小时以前 8182370136b1d91330ada09e2fcebdd01dde1161
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
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 SupplierSureService sureService;
    @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 sure
     * @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("/supplier/list")
    public CommonResult listSupplier(SupplierSure sure){
        return CommonResult.success(sureService.selectSupplierList(sure));
    }
 
 
    /**
     * 合格供应商新增
     * @param sure
     * @return
     */
    @ApiOperation(value = "合格供应商新增")
    @PostMapping("/supplier/insert")
    public CommonResult insertSupplier(@RequestBody SupplierSure sure){
        return sureService.insertSupplier(sure);
    }
 
    /**
     * 合格供应商修改
     * @param sure
     * @return
     */
    @ApiOperation(value = "合格供应商修改")
    @PostMapping("/supplier/update")
    public CommonResult updateSupplier(@RequestBody SupplierSure sure){
        return sureService.updateSupplier(sure);
    }
 
    /**
     * 合格供应商删除
     * @param supplierId
     * @return
     */
    @ApiOperation(value = "合格供应商删除")
    @GetMapping("/supplier/deleted")
    public CommonResult deletedSupplier(@RequestParam("supplierId") Integer supplierId){
        return sureService.deletedSupplier(supplierId);
    }
 
 
    /**
     * 顾客满意度列表
     * @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);
    }
 
 
 
 
 
 
 
 
}