cheng
2023-12-12 c64c9f6fb38f65be99b827c1af8d3c3852f68ba4
提交 | 用户 | 时间
b26949 1 package cn.stylefeng.guns.modular.gm.greaseManage.controller;
2
3 import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
4 import cn.stylefeng.guns.modular.gm.greaseManage.entity.GreaseManage;
5 import cn.stylefeng.guns.modular.gm.greaseManage.model.params.GreaseManageParam;
6 import cn.stylefeng.guns.modular.gm.greaseManage.service.GreaseManageService;
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-12-11 14:28:02
20  */
21 @Controller
22 @RequestMapping("/greaseManage")
23 public class GreaseManageController extends BaseController {
24
25     private String PREFIX = "/modular/gm/greaseManage";
26
27     @Autowired
28     private GreaseManageService greaseManageService;
29
30     /**
31      * 跳转到主页面
32      *
33      * @author ruimin
34      * @Date 2023-12-11
35      */
36     @RequestMapping("")
37     public String index() {
38         return PREFIX + "/greaseManage.html";
39     }
40
41     /**
42      * 新增页面
43      *
44      * @author ruimin
45      * @Date 2023-12-11
46      */
47     @RequestMapping("/add")
48     public String add() {
49         return PREFIX + "/greaseManage_add.html";
50     }
51
52     /**
53      * 编辑页面
54      *
55      * @author ruimin
56      * @Date 2023-12-11
57      */
58     @RequestMapping("/edit")
59     public String edit() {
60         return PREFIX + "/greaseManage_edit.html";
61     }
62
63     /**
64      * 新增接口
65      *
66      * @author ruimin
67      * @Date 2023-12-11
68      */
69     @RequestMapping("/addItem")
70     @ResponseBody
71     public ResponseData addItem(GreaseManageParam greaseManageParam) {
72         this.greaseManageService.add(greaseManageParam);
73         return ResponseData.success();
74     }
75
76     /**
77      * 编辑接口
78      *
79      * @author ruimin
80      * @Date 2023-12-11
81      */
82     @RequestMapping("/editItem")
83     @ResponseBody
84     public ResponseData editItem(GreaseManageParam greaseManageParam) {
85         this.greaseManageService.update(greaseManageParam);
86         return ResponseData.success();
87     }
88
89     /**
90      * 删除接口
91      *
92      * @author ruimin
93      * @Date 2023-12-11
94      */
95     @RequestMapping("/delete")
96     @ResponseBody
97     public ResponseData delete(GreaseManageParam greaseManageParam) {
98         this.greaseManageService.delete(greaseManageParam);
99         return ResponseData.success();
100     }
101
102     /**
103      * 查看详情接口
104      *
105      * @author ruimin
106      * @Date 2023-12-11
107      */
108     @RequestMapping("/detail")
109     @ResponseBody
110     public ResponseData detail(GreaseManageParam greaseManageParam) {
111         GreaseManage detail = this.greaseManageService.getById(greaseManageParam.getId());
112         return ResponseData.success(detail);
113     }
114
115     /**
116      * 查询列表
117      *
118      * @author ruimin
119      * @Date 2023-12-11
120      */
121     @ResponseBody
122     @RequestMapping("/list")
123     public LayuiPageInfo list(GreaseManageParam greaseManageParam) {
124         return this.greaseManageService.findPageBySpec(greaseManageParam);
125     }
126
127 }
128
129