liding
2 天以前 4c33acfe648e9b008f91c5e2cf446550e6b0174d
main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java
@@ -6,6 +6,7 @@
import com.ruoyi.business.entity.OfficialInventory;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.business.vo.OfficialInventoryVo;
import jakarta.servlet.http.HttpServletResponse;
import java.math.BigDecimal;
import java.util.List;
@@ -21,7 +22,7 @@
 */
public interface OfficialInventoryService extends IService<OfficialInventory> {
    IPage<OfficialInventoryDto> selectOfficialInventoryList(Page page, OfficialInventoryDto officialInventoryDto);
    IPage<OfficialInventoryDto> selectOfficialInventoryList(Page<OfficialInventory> page, OfficialInventoryDto officialInventoryDto);
    int mergeAll(OfficialInventoryDto officialInventoryDto);
@@ -32,4 +33,8 @@
    List<OfficialInventory> selectOfficialAll();
    Map<String, BigDecimal> selectOfficialAllInfo();
    List<OfficialInventoryDto> coalBlendingList();
    void officialInventoryExport(HttpServletResponse response, OfficialInventoryDto officialInventoryDto);
}