package com.jcdm.main.om.workReport.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.om.workReport.domain.OmWorkReport; import com.jcdm.main.om.workReport.service.IOmWorkReportService; import com.jcdm.common.utils.poi.ExcelUtil; import com.jcdm.common.core.page.TableDataInfo; /** * 报工记录 表Controller * * @author Yi * @date 2023-12-12 */ @RestController @RequestMapping("/om/workReport") public class OmWorkReportController extends BaseController { @Autowired private IOmWorkReportService omWorkReportService; /** * 查询报工记录 表列表 */ @PreAuthorize("@ss.hasPermi('om:workReport:list')") @GetMapping("/list") public TableDataInfo list(OmWorkReport omWorkReport) { startPage(); List list = omWorkReportService.selectOmWorkReportList(omWorkReport); return getDataTable(list); } /** * 导出报工记录 表列表 */ @PreAuthorize("@ss.hasPermi('om:workReport:export')") @Log(title = "报工记录 表", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, OmWorkReport omWorkReport) { List list = omWorkReportService.selectOmWorkReportList(omWorkReport); ExcelUtil util = new ExcelUtil(OmWorkReport.class); util.exportExcel(response, list, "报工记录 表数据"); } /** * 获取报工记录 表详细信息 */ @PreAuthorize("@ss.hasPermi('om:workReport:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(omWorkReportService.selectOmWorkReportById(id)); } /** * 新增报工记录 表 */ @PreAuthorize("@ss.hasPermi('om:workReport:add')") @Log(title = "报工记录 表", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody OmWorkReport omWorkReport) { return toAjax(omWorkReportService.insertOmWorkReport(omWorkReport)); } /** * 修改报工记录 表 */ @PreAuthorize("@ss.hasPermi('om:workReport:edit')") @Log(title = "报工记录 表", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody OmWorkReport omWorkReport) { return toAjax(omWorkReportService.updateOmWorkReport(omWorkReport)); } /** * 删除报工记录 表 */ @PreAuthorize("@ss.hasPermi('om:workReport:remove')") @Log(title = "报工记录 表", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(omWorkReportService.deleteOmWorkReportByIds(ids)); } }