liding
2 天以前 6733a32d4bcd7ad3ec3f109da0f3d2524766f7bb
main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java
@@ -7,7 +7,9 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.business.vo.OfficialInventoryVo;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
/**
 * <p>
@@ -19,7 +21,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);
@@ -28,4 +30,8 @@
    List<OfficialInventoryVo> selectOfficialList(OfficialInventoryVo officialInventoryVo);
    List<OfficialInventory> selectOfficialAll();
    Map<String, BigDecimal> selectOfficialAllInfo();
    List<OfficialInventoryDto> coalBlendingList();
}