package com.jcdm.main.bs.beatSetting.controller; import java.time.LocalDate; import java.util.List; import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; import cn.hutool.core.util.ObjectUtil; import com.jcdm.common.core.domain.R; import com.jcdm.main.bs.beatSetting.domain.ProductNumTable; import com.jcdm.main.bs.beatSetting.service.ProductNumTableService; import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection; import com.jcdm.main.da.passingStationCollection.domain.ProductNumVO; import com.jcdm.main.da.passingStationCollection.service.IDaPassingStationCollectionService; 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.beatSetting.domain.BsBeatSetting; import com.jcdm.main.bs.beatSetting.service.IBsBeatSettingService; import com.jcdm.common.utils.poi.ExcelUtil; import com.jcdm.common.core.page.TableDataInfo; /** * 节拍设置Controller1 * * @author Yi * @date 2024-01-05 */ @RestController @RequestMapping("/bs/beatSetting") public class BsBeatSettingController extends BaseController { @Autowired private IBsBeatSettingService bsBeatSettingService; @Resource private ProductNumTableService productNumTableService; @Resource private IDaPassingStationCollectionService daPassingStationCollectionService; /** * 查询节拍设置列表 */ @PreAuthorize("@ss.hasPermi('bs:beatSetting:list')") @GetMapping("/list") public TableDataInfo list(BsBeatSetting bsBeatSetting) { startPage(); List list = bsBeatSettingService.selectBsBeatSettingList(bsBeatSetting); return getDataTable(list); } /** * 导出节拍设置列表 */ @PreAuthorize("@ss.hasPermi('bs:beatSetting:export')") @Log(title = "节拍设置", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, BsBeatSetting bsBeatSetting) { List list = bsBeatSettingService.selectBsBeatSettingList(bsBeatSetting); ExcelUtil util = new ExcelUtil(BsBeatSetting.class); util.exportExcel(response, list, "节拍设置数据"); } @Log(title = "节拍设置", businessType = BusinessType.EXPORT) @PostMapping("/productNumExport") public void productNumExport(HttpServletResponse response, DaPassingStationCollection daPassingStationCollection) { // LocalDate queryDate = daPassingStationCollection.getQueryDate(); // String queryMonth = daPassingStationCollection.getQueryMonth(); // if (ObjectUtil.isNull(queryDate) && ObjectUtil.isNull(queryMonth)){ // return R.fail("请选择月份或者日期"); // } // if (ObjectUtil.isNotEmpty(queryMonth) && ObjectUtil.isNotEmpty(queryDate)){ // String queryDateString = queryDate.toString(); // String queryMonthString = queryMonth.toString(); // if (!queryDateString.contains(queryMonthString)){ // return R.fail("请确认选择的月份和日期月份是否匹配"); // } // } List productNum = daPassingStationCollectionService.getProductNum(daPassingStationCollection); ExcelUtil util = new ExcelUtil(ProductNumVO.class); util.exportExcel(response, productNum, "产量统计数据"); } /** * 获取节拍设置详细信息 */ @PreAuthorize("@ss.hasPermi('bs:beatSetting:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(bsBeatSettingService.selectBsBeatSettingById(id)); } /** * 新增节拍设置 */ @PreAuthorize("@ss.hasPermi('bs:beatSetting:add')") @Log(title = "节拍设置", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody BsBeatSetting bsBeatSetting) { return toAjax(bsBeatSettingService.insertBsBeatSetting(bsBeatSetting)); } /** * 修改节拍设置 */ @PreAuthorize("@ss.hasPermi('bs:beatSetting:edit')") @Log(title = "节拍设置", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody BsBeatSetting bsBeatSetting) { return toAjax(bsBeatSettingService.updateBsBeatSetting(bsBeatSetting)); } /** * 删除节拍设置 */ @PreAuthorize("@ss.hasPermi('bs:beatSetting:remove')") @Log(title = "节拍设置", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(bsBeatSettingService.deleteBsBeatSettingByIds(ids)); } }