package com.sunda.spmswms.service;

import com.sunda.spmscommon.ResponseResult;
import com.sunda.spmswms.entity.WhsStorageInventoryLastMonth;
import com.baomidou.mybatisplus.extension.service.IService;

/**
 * <p>
 * 上月底库存结余数量表 服务类
 * </p>
 *
 * @author Wayne
 * @since 2023-01-18
 */
public interface IWhsStorageInventoryLastMonthService extends IService<WhsStorageInventoryLastMonth> {
	
	/**
	 * 每月底汇总物料/交货单库存数量
	 * @return
	 */
	ResponseResult getWhsInventoryLastMonth();

}
