You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
656 B
C#
20 lines
656 B
C#
using Admin.Core.IService;
|
|
using Admin.Core.Model;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.IService
|
|
{
|
|
/// <summary>
|
|
/// IBaseSpaceInfoServices
|
|
/// </summary>
|
|
public interface IBaseSpaceInfoServices : IBaseServices<BaseSpaceInfo>
|
|
{
|
|
/// <summary>
|
|
/// 入库通过物料类型获取指定货道,如果没有对应类型的货道返回空白类型的货道
|
|
/// </summary>
|
|
/// <param name="store"></param>
|
|
/// <param name="materialType"></param>
|
|
/// <returns></returns>
|
|
Task<BaseSpaceInfo> InStoreGetSpaceInfoByMaterialType(string store, string materialType);
|
|
}
|
|
} |