提交 | 用户 | 时间
|
fd2207
|
1 |
package com.jcdm.main.bs.formula.controller; |
懒 |
2 |
|
|
3 |
import java.util.List; |
|
4 |
import javax.servlet.http.HttpServletResponse; |
|
5 |
import org.springframework.security.access.prepost.PreAuthorize; |
|
6 |
import org.springframework.beans.factory.annotation.Autowired; |
|
7 |
import org.springframework.web.bind.annotation.GetMapping; |
|
8 |
import org.springframework.web.bind.annotation.PostMapping; |
|
9 |
import org.springframework.web.bind.annotation.PutMapping; |
|
10 |
import org.springframework.web.bind.annotation.DeleteMapping; |
|
11 |
import org.springframework.web.bind.annotation.PathVariable; |
|
12 |
import org.springframework.web.bind.annotation.RequestBody; |
|
13 |
import org.springframework.web.bind.annotation.RequestMapping; |
|
14 |
import org.springframework.web.bind.annotation.RestController; |
|
15 |
import com.jcdm.common.annotation.Log; |
|
16 |
import com.jcdm.common.core.controller.BaseController; |
|
17 |
import com.jcdm.common.core.domain.AjaxResult; |
|
18 |
import com.jcdm.common.enums.BusinessType; |
|
19 |
import com.jcdm.main.bs.formula.domain.BsFormulaInfo; |
|
20 |
import com.jcdm.main.bs.formula.service.IBsFormulaInfoService; |
|
21 |
import com.jcdm.common.utils.poi.ExcelUtil; |
|
22 |
import com.jcdm.common.core.page.TableDataInfo; |
|
23 |
|
|
24 |
/** |
|
25 |
* 配方配置Controller |
|
26 |
* |
|
27 |
* @author ruimin |
|
28 |
* @date 2023-12-26 |
|
29 |
*/ |
|
30 |
@RestController |
|
31 |
@RequestMapping("/bs/formula") |
|
32 |
public class BsFormulaInfoController extends BaseController |
|
33 |
{ |
|
34 |
@Autowired |
|
35 |
private IBsFormulaInfoService bsFormulaInfoService; |
|
36 |
|
|
37 |
/** |
|
38 |
* 查询配方配置列表 |
|
39 |
*/ |
|
40 |
@PreAuthorize("@ss.hasPermi('bs:formula:list')") |
|
41 |
@GetMapping("/list") |
|
42 |
public TableDataInfo list(BsFormulaInfo bsFormulaInfo) |
|
43 |
{ |
|
44 |
startPage(); |
|
45 |
List<BsFormulaInfo> list = bsFormulaInfoService.selectBsFormulaInfoList(bsFormulaInfo); |
|
46 |
return getDataTable(list); |
|
47 |
} |
|
48 |
|
|
49 |
/** |
|
50 |
* 导出配方配置列表 |
|
51 |
*/ |
|
52 |
@PreAuthorize("@ss.hasPermi('bs:formula:export')") |
|
53 |
@Log(title = "配方配置", businessType = BusinessType.EXPORT) |
|
54 |
@PostMapping("/export") |
|
55 |
public void export(HttpServletResponse response, BsFormulaInfo bsFormulaInfo) |
|
56 |
{ |
|
57 |
List<BsFormulaInfo> list = bsFormulaInfoService.selectBsFormulaInfoList(bsFormulaInfo); |
|
58 |
ExcelUtil<BsFormulaInfo> util = new ExcelUtil<BsFormulaInfo>(BsFormulaInfo.class); |
|
59 |
util.exportExcel(response, list, "配方配置数据"); |
|
60 |
} |
|
61 |
|
|
62 |
/** |
|
63 |
* 获取配方配置详细信息 |
|
64 |
*/ |
|
65 |
@PreAuthorize("@ss.hasPermi('bs:formula:query')") |
|
66 |
@GetMapping(value = "/{id}") |
|
67 |
public AjaxResult getInfo(@PathVariable("id") Long id) |
|
68 |
{ |
|
69 |
return success(bsFormulaInfoService.selectBsFormulaInfoById(id)); |
|
70 |
} |
|
71 |
|
|
72 |
/** |
|
73 |
* 新增配方配置 |
|
74 |
*/ |
|
75 |
@PreAuthorize("@ss.hasPermi('bs:formula:add')") |
|
76 |
@Log(title = "配方配置", businessType = BusinessType.INSERT) |
|
77 |
@PostMapping |
|
78 |
public AjaxResult add(@RequestBody BsFormulaInfo bsFormulaInfo) |
|
79 |
{ |
|
80 |
return toAjax(bsFormulaInfoService.insertBsFormulaInfo(bsFormulaInfo)); |
|
81 |
} |
|
82 |
|
|
83 |
/** |
|
84 |
* 修改配方配置 |
|
85 |
*/ |
|
86 |
@PreAuthorize("@ss.hasPermi('bs:formula:edit')") |
|
87 |
@Log(title = "配方配置", businessType = BusinessType.UPDATE) |
|
88 |
@PutMapping |
|
89 |
public AjaxResult edit(@RequestBody BsFormulaInfo bsFormulaInfo) |
|
90 |
{ |
|
91 |
return toAjax(bsFormulaInfoService.updateBsFormulaInfo(bsFormulaInfo)); |
|
92 |
} |
|
93 |
|
|
94 |
/** |
|
95 |
* 删除配方配置 |
|
96 |
*/ |
|
97 |
@PreAuthorize("@ss.hasPermi('bs:formula:remove')") |
|
98 |
@Log(title = "配方配置", businessType = BusinessType.DELETE) |
|
99 |
@DeleteMapping("/{ids}") |
|
100 |
public AjaxResult remove(@PathVariable Long[] ids) |
|
101 |
{ |
|
102 |
return toAjax(bsFormulaInfoService.deleteBsFormulaInfoByIds(ids)); |
|
103 |
} |
|
104 |
} |