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