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