package com.billion.main.bs.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.billion.common.annotation.Log; import com.billion.common.core.controller.BaseController; import com.billion.common.core.domain.AjaxResult; import com.billion.common.enums.BusinessType; import com.billion.main.bs.domain.BsMaterialInfo; import com.billion.main.bs.service.IBsMaterialInfoService; import com.billion.common.utils.poi.ExcelUtil; import com.billion.common.core.page.TableDataInfo; /** * 物料信息Controller * * @author Billion-Yi * @date 2024-11-26 */ @RestController @RequestMapping("/bs/materialInfo") public class BsMaterialInfoController extends BaseController { @Autowired private IBsMaterialInfoService bsMaterialInfoService; /** * 查询物料信息列表 */ @PreAuthorize("@ss.hasPermi('bs:materialInfo:list')") @GetMapping("/list") public TableDataInfo list(BsMaterialInfo bsMaterialInfo) { startPage(); List list = bsMaterialInfoService.selectBsMaterialInfoList(bsMaterialInfo); return getDataTable(list); } /** * 导出物料信息列表 */ @PreAuthorize("@ss.hasPermi('bs:materialInfo:export')") @Log(title = "物料信息", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, BsMaterialInfo bsMaterialInfo) { List list = bsMaterialInfoService.selectBsMaterialInfoList(bsMaterialInfo); ExcelUtil util = new ExcelUtil(BsMaterialInfo.class); util.exportExcel(response, list, "物料信息数据"); } /** * 获取物料信息详细信息 */ @PreAuthorize("@ss.hasPermi('bs:materialInfo:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(bsMaterialInfoService.selectBsMaterialInfoById(id)); } /** * 新增物料信息 */ @PreAuthorize("@ss.hasPermi('bs:materialInfo:add')") @Log(title = "物料信息", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody BsMaterialInfo bsMaterialInfo) { return toAjax(bsMaterialInfoService.insertBsMaterialInfo(bsMaterialInfo)); } /** * 修改物料信息 */ @PreAuthorize("@ss.hasPermi('bs:materialInfo:edit')") @Log(title = "物料信息", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody BsMaterialInfo bsMaterialInfo) { return toAjax(bsMaterialInfoService.updateBsMaterialInfo(bsMaterialInfo)); } /** * 删除物料信息 */ @PreAuthorize("@ss.hasPermi('bs:materialInfo:remove')") @Log(title = "物料信息", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(bsMaterialInfoService.deleteBsMaterialInfoByIds(ids)); } }