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<BsMaterialInfo> 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<BsMaterialInfo> list = bsMaterialInfoService.selectBsMaterialInfoList(bsMaterialInfo); ExcelUtil<BsMaterialInfo> util = new ExcelUtil<BsMaterialInfo>(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)); } }