提交 | 用户 | 时间
|
71e81e
|
1 |
package cn.stylefeng.guns.modular.qc.badReasonConf.controller; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo; |
|
4 |
import cn.stylefeng.guns.modular.qc.badReasonConf.entity.BadReasonConf; |
|
5 |
import cn.stylefeng.guns.modular.qc.badReasonConf.model.params.BadReasonConfParam; |
|
6 |
import cn.stylefeng.guns.modular.qc.badReasonConf.service.BadReasonConfService; |
|
7 |
import cn.stylefeng.roses.core.base.controller.BaseController; |
|
8 |
import cn.stylefeng.roses.kernel.model.response.ResponseData; |
|
9 |
import org.springframework.beans.factory.annotation.Autowired; |
|
10 |
import org.springframework.stereotype.Controller; |
|
11 |
import org.springframework.web.bind.annotation.RequestMapping; |
|
12 |
import org.springframework.web.bind.annotation.ResponseBody; |
|
13 |
|
|
14 |
|
|
15 |
/** |
|
16 |
* 不良原因配置控制器 |
|
17 |
* |
|
18 |
* @author ruimin |
|
19 |
* @Date 2023-03-11 09:35:13 |
|
20 |
*/ |
|
21 |
@Controller |
|
22 |
@RequestMapping("/badReasonConf") |
|
23 |
public class BadReasonConfController extends BaseController { |
|
24 |
|
|
25 |
private String PREFIX = "modular/qc/badReasonConf"; |
|
26 |
|
|
27 |
@Autowired |
|
28 |
private BadReasonConfService badReasonConfService; |
|
29 |
|
|
30 |
/** |
|
31 |
* 跳转到主页面 |
|
32 |
* |
|
33 |
* @author ruimin |
|
34 |
* @Date 2023-03-11 |
|
35 |
*/ |
|
36 |
@RequestMapping("") |
|
37 |
public String index() { |
|
38 |
return PREFIX + "/badReasonConf.html"; |
|
39 |
} |
|
40 |
|
|
41 |
/** |
|
42 |
* 新增页面 |
|
43 |
* |
|
44 |
* @author ruimin |
|
45 |
* @Date 2023-03-11 |
|
46 |
*/ |
|
47 |
@RequestMapping("/add") |
|
48 |
public String add() { |
|
49 |
return PREFIX + "/badReasonConf_add.html"; |
|
50 |
} |
|
51 |
|
|
52 |
/** |
|
53 |
* 编辑页面 |
|
54 |
* |
|
55 |
* @author ruimin |
|
56 |
* @Date 2023-03-11 |
|
57 |
*/ |
|
58 |
@RequestMapping("/edit") |
|
59 |
public String edit() { |
|
60 |
return PREFIX + "/badReasonConf_edit.html"; |
|
61 |
} |
|
62 |
|
|
63 |
/** |
|
64 |
* 新增接口 |
|
65 |
* |
|
66 |
* @author ruimin |
|
67 |
* @Date 2023-03-11 |
|
68 |
*/ |
|
69 |
@RequestMapping("/addItem") |
|
70 |
@ResponseBody |
|
71 |
public ResponseData addItem(BadReasonConfParam badReasonConfParam) { |
|
72 |
this.badReasonConfService.add(badReasonConfParam); |
|
73 |
return ResponseData.success(); |
|
74 |
} |
|
75 |
|
|
76 |
/** |
|
77 |
* 编辑接口 |
|
78 |
* |
|
79 |
* @author ruimin |
|
80 |
* @Date 2023-03-11 |
|
81 |
*/ |
|
82 |
@RequestMapping("/editItem") |
|
83 |
@ResponseBody |
|
84 |
public ResponseData editItem(BadReasonConfParam badReasonConfParam) { |
|
85 |
this.badReasonConfService.update(badReasonConfParam); |
|
86 |
return ResponseData.success(); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* 删除接口 |
|
91 |
* |
|
92 |
* @author ruimin |
|
93 |
* @Date 2023-03-11 |
|
94 |
*/ |
|
95 |
@RequestMapping("/delete") |
|
96 |
@ResponseBody |
|
97 |
public ResponseData delete(BadReasonConfParam badReasonConfParam) { |
|
98 |
this.badReasonConfService.delete(badReasonConfParam); |
|
99 |
return ResponseData.success(); |
|
100 |
} |
|
101 |
|
|
102 |
/** |
|
103 |
* 查看详情接口 |
|
104 |
* |
|
105 |
* @author ruimin |
|
106 |
* @Date 2023-03-11 |
|
107 |
*/ |
|
108 |
@RequestMapping("/detail") |
|
109 |
@ResponseBody |
|
110 |
public ResponseData detail(BadReasonConfParam badReasonConfParam) { |
|
111 |
BadReasonConf detail = this.badReasonConfService.getById(badReasonConfParam.getId()); |
|
112 |
return ResponseData.success(detail); |
|
113 |
} |
|
114 |
|
|
115 |
/** |
|
116 |
* 查询列表 |
|
117 |
* |
|
118 |
* @author ruimin |
|
119 |
* @Date 2023-03-11 |
|
120 |
*/ |
|
121 |
@ResponseBody |
|
122 |
@RequestMapping("/list") |
|
123 |
public LayuiPageInfo list(BadReasonConfParam badReasonConfParam) { |
|
124 |
return this.badReasonConfService.findPageBySpec(badReasonConfParam); |
|
125 |
} |
|
126 |
|
|
127 |
} |
|
128 |
|
|
129 |
|