package com.jcdm.main.bs.formulaChildInfoTemp.controller; import java.util.List; import javax.servlet.http.HttpServletResponse; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.jcdm.common.annotation.Log; import com.jcdm.common.core.controller.BaseController; import com.jcdm.common.core.domain.AjaxResult; import com.jcdm.common.enums.BusinessType; import com.jcdm.main.bs.formulaChildInfoTemp.domain.BsFormulaChildInfoTemp; import com.jcdm.main.bs.formulaChildInfoTemp.service.IBsFormulaChildInfoTempService; import com.jcdm.common.utils.poi.ExcelUtil; import com.jcdm.common.core.page.TableDataInfo; /** * 配方配置子信息-备份Controller * * @author Yi * @date 2024-07-15 */ @RestController @RequestMapping("/bs/formulaChildInfoTemp") public class BsFormulaChildInfoTempController extends BaseController { @Autowired private IBsFormulaChildInfoTempService bsFormulaChildInfoTempService; /** * 查询配方配置子信息-备份列表 */ @PreAuthorize("@ss.hasPermi('bs:formulaChildInfoTemp:list')") @GetMapping("/list") public TableDataInfo list(BsFormulaChildInfoTemp bsFormulaChildInfoTemp) { startPage(); List list = bsFormulaChildInfoTempService.selectBsFormulaChildInfoTempList(bsFormulaChildInfoTemp); return getDataTable(list); } /** * 导出配方配置子信息-备份列表 */ @PreAuthorize("@ss.hasPermi('bs:formulaChildInfoTemp:export')") @Log(title = "配方配置子信息-备份", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, BsFormulaChildInfoTemp bsFormulaChildInfoTemp) { List list = bsFormulaChildInfoTempService.selectBsFormulaChildInfoTempList(bsFormulaChildInfoTemp); ExcelUtil util = new ExcelUtil(BsFormulaChildInfoTemp.class); util.exportExcel(response, list, "配方配置子信息-备份数据"); } /** * 获取配方配置子信息-备份详细信息 */ @PreAuthorize("@ss.hasPermi('bs:formulaChildInfoTemp:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(bsFormulaChildInfoTempService.selectBsFormulaChildInfoTempById(id)); } /** * 新增配方配置子信息-备份 */ @PreAuthorize("@ss.hasPermi('bs:formulaChildInfoTemp:add')") @Log(title = "配方配置子信息-备份", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody BsFormulaChildInfoTemp bsFormulaChildInfoTemp) { return toAjax(bsFormulaChildInfoTempService.insertBsFormulaChildInfoTemp(bsFormulaChildInfoTemp)); } /** * 修改配方配置子信息-备份 */ @PreAuthorize("@ss.hasPermi('bs:formulaChildInfoTemp:edit')") @Log(title = "配方配置子信息-备份", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody BsFormulaChildInfoTemp bsFormulaChildInfoTemp) { return toAjax(bsFormulaChildInfoTempService.updateBsFormulaChildInfoTemp(bsFormulaChildInfoTemp)); } /** * 删除配方配置子信息-备份 */ @PreAuthorize("@ss.hasPermi('bs:formulaChildInfoTemp:remove')") @Log(title = "配方配置子信息-备份", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(bsFormulaChildInfoTempService.deleteBsFormulaChildInfoTempByIds(ids)); } }