package cn.stylefeng.guns.modular.zsx.bs.formula.controller;
|
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
|
import cn.stylefeng.guns.modular.zsx.bs.formula.entity.FormulaInfo;
|
import cn.stylefeng.guns.modular.zsx.bs.formula.model.params.FormulaInfoParam;
|
import cn.stylefeng.guns.modular.zsx.bs.formula.service.FormulaInfoService;
|
import cn.stylefeng.roses.core.base.controller.BaseController;
|
import cn.stylefeng.roses.kernel.model.response.ResponseData;
|
import cn.stylefeng.roses.core.mutidatasource.annotion.DataSource;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Controller;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
/**
|
* 配方配置控制器
|
*
|
* @author ruimin
|
* @Date 2023-10-09 15:39:01
|
*/
|
@Controller
|
@RequestMapping("/formulaInfo")
|
public class FormulaInfoController extends BaseController {
|
|
private String PREFIX = "/modular/bs/formulaInfo";
|
|
@Autowired
|
private FormulaInfoService formulaInfoService;
|
|
/**
|
* 跳转到主页面
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@RequestMapping("")
|
public String index() {
|
return PREFIX + "/formulaInfo.html";
|
}
|
|
/**
|
* 新增页面
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@RequestMapping("/add")
|
public String add() {
|
return PREFIX + "/formulaInfo_add.html";
|
}
|
|
/**
|
* 编辑页面
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@RequestMapping("/edit")
|
public String edit() {
|
return PREFIX + "/formulaInfo_edit.html";
|
}
|
|
/**
|
* 新增接口
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@RequestMapping("/addItem")
|
@ResponseBody
|
@DataSource(name = "self")
|
public ResponseData addItem(FormulaInfoParam formulaInfoParam) {
|
this.formulaInfoService.add(formulaInfoParam);
|
return ResponseData.success();
|
}
|
|
/**
|
* 编辑接口
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@RequestMapping("/editItem")
|
@ResponseBody
|
@DataSource(name = "self")
|
public ResponseData editItem(FormulaInfoParam formulaInfoParam) {
|
this.formulaInfoService.update(formulaInfoParam);
|
return ResponseData.success();
|
}
|
|
/**
|
* 删除接口
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@RequestMapping("/delete")
|
@ResponseBody
|
@DataSource(name = "self")
|
public ResponseData delete(FormulaInfoParam formulaInfoParam) {
|
this.formulaInfoService.delete(formulaInfoParam);
|
return ResponseData.success();
|
}
|
|
/**
|
* 查看详情接口
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@RequestMapping("/detail")
|
@ResponseBody
|
@DataSource(name = "self")
|
public ResponseData detail(FormulaInfoParam formulaInfoParam) {
|
FormulaInfo detail = this.formulaInfoService.getById(formulaInfoParam.getId());
|
return ResponseData.success(detail);
|
}
|
|
/**
|
* 查询列表
|
*
|
* @author ruimin
|
* @Date 2023-10-09
|
*/
|
@ResponseBody
|
@RequestMapping("/list")
|
@DataSource(name = "self")
|
public LayuiPageInfo list(FormulaInfoParam formulaInfoParam) {
|
return this.formulaInfoService.findPageBySpec(formulaInfoParam);
|
}
|
|
}
|