package com.jcdm.main.bs.technologyRoute.controller; import java.util.List; import javax.servlet.http.HttpServletResponse; import com.jcdm.main.bs.technologyRoute.domain.BsTechnologyRouteInfo; import com.jcdm.main.bs.technologyRoute.service.IBsTechnologyRouteInfoService; 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.common.utils.poi.ExcelUtil; import com.jcdm.common.core.page.TableDataInfo; /** * 工艺流程Controller * * @author ruimin * @date 2023-12-09 */ @RestController @RequestMapping("/bs/technologyRoute") public class BsTechnologyRouteInfoController extends BaseController { @Autowired private IBsTechnologyRouteInfoService bsTechnologyRouteInfoService; /** * 查询工艺流程列表 */ @PreAuthorize("@ss.hasPermi('bs:technologyRoute:list')") @GetMapping("/list") public TableDataInfo list(BsTechnologyRouteInfo bsTechnologyRouteInfo) { startPage(); List list = bsTechnologyRouteInfoService.selectBsTechnologyRouteInfoList(bsTechnologyRouteInfo); return getDataTable(list); } /** * 导出工艺流程列表 */ @PreAuthorize("@ss.hasPermi('bs:technologyRoute:export')") @Log(title = "工艺流程", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, BsTechnologyRouteInfo bsTechnologyRouteInfo) { List list = bsTechnologyRouteInfoService.selectBsTechnologyRouteInfoList(bsTechnologyRouteInfo); ExcelUtil util = new ExcelUtil(BsTechnologyRouteInfo.class); util.exportExcel(response, list, "工艺流程数据"); } /** * 获取工艺流程详细信息 */ @PreAuthorize("@ss.hasPermi('bs:technologyRoute:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(bsTechnologyRouteInfoService.selectBsTechnologyRouteInfoById(id)); } /** * 新增工艺流程 */ @PreAuthorize("@ss.hasPermi('bs:technologyRoute:add')") @Log(title = "工艺流程", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody BsTechnologyRouteInfo bsTechnologyRouteInfo) { return toAjax(bsTechnologyRouteInfoService.insertBsTechnologyRouteInfo(bsTechnologyRouteInfo)); } /** * 修改工艺流程 */ @PreAuthorize("@ss.hasPermi('bs:technologyRoute:edit')") @Log(title = "工艺流程", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody BsTechnologyRouteInfo bsTechnologyRouteInfo) { return toAjax(bsTechnologyRouteInfoService.updateBsTechnologyRouteInfo(bsTechnologyRouteInfo)); } /** * 修改工艺流程以及子工艺 */ @PreAuthorize("@ss.hasPermi('bs:technologyRouteAndChild:edit')") @Log(title = "工艺流程And子信息", businessType = BusinessType.UPDATE) @PutMapping("/technologyRouteAndChild") public AjaxResult technologyRouteAndChild(@RequestBody BsTechnologyRouteInfo bsTechnologyRouteInfo) { return toAjax(bsTechnologyRouteInfoService.updateBsTechnologyRouteAndChildInfo(bsTechnologyRouteInfo)); } /** * 删除工艺流程 */ @PreAuthorize("@ss.hasPermi('bs:technologyRoute:remove')") @Log(title = "工艺流程", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(bsTechnologyRouteInfoService.deleteBsTechnologyRouteInfoByIds(ids)); } }