| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.business.dto.OfficialInventoryDto; |
| | | import com.ruoyi.business.dto.SalesRecordDto; |
| | | import com.ruoyi.business.entity.OfficialInventory; |
| | | import com.ruoyi.business.service.OfficialInventoryService; |
| | | import com.ruoyi.business.vo.OfficialInventoryVo; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | public R<List<OfficialInventoryDto>> coalBlendingList() { |
| | | return R.ok(officialInventoryService.coalBlendingList()); |
| | | } |
| | | |
| | | /** |
| | | * 正式库记录表导出 |
| | | */ |
| | | @PostMapping("/export") |
| | | public void officialInventoryExport(HttpServletResponse response, OfficialInventoryDto officialInventoryDto) { |
| | | officialInventoryService.officialInventoryExport(response, officialInventoryDto); |
| | | } |
| | | } |