package com.jcdm.main.bs.lineInfo.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.lineInfo.domain.BsLineInfo; import com.jcdm.main.bs.lineInfo.service.IBsLineInfoService; import com.jcdm.common.utils.poi.ExcelUtil; import com.jcdm.common.core.page.TableDataInfo; /** * 产线信息Controller * * @author Yi * @date 2023-12-09 */ @RestController @RequestMapping("/bs/lineInfo") public class BsLineInfoController extends BaseController { @Autowired private IBsLineInfoService bsLineInfoService; /** * 查询产线信息列表 */ @PreAuthorize("@ss.hasPermi('bs:lineInfo:list')") @GetMapping("/list") public TableDataInfo list(BsLineInfo bsLineInfo) { startPage(); List list = bsLineInfoService.selectBsLineInfoList(bsLineInfo); return getDataTable(list); } /** * 导出产线信息列表 */ @PreAuthorize("@ss.hasPermi('bs:lineInfo:export')") @Log(title = "产线信息", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, BsLineInfo bsLineInfo) { List list = bsLineInfoService.selectBsLineInfoList(bsLineInfo); ExcelUtil util = new ExcelUtil(BsLineInfo.class); util.exportExcel(response, list, "产线信息数据"); } /** * 获取产线信息详细信息 */ @PreAuthorize("@ss.hasPermi('bs:lineInfo:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(bsLineInfoService.selectBsLineInfoById(id)); } /** * 新增产线信息 */ @PreAuthorize("@ss.hasPermi('bs:lineInfo:add')") @Log(title = "产线信息", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody BsLineInfo bsLineInfo) { return toAjax(bsLineInfoService.insertBsLineInfo(bsLineInfo)); } /** * 修改产线信息 */ @PreAuthorize("@ss.hasPermi('bs:lineInfo:edit')") @Log(title = "产线信息", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody BsLineInfo bsLineInfo) { return toAjax(bsLineInfoService.updateBsLineInfo(bsLineInfo)); } /** * 删除产线信息 */ @PreAuthorize("@ss.hasPermi('bs:lineInfo:remove')") @Log(title = "产线信息", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(bsLineInfoService.deleteBsLineInfoByIds(ids)); } }