Merge branch 'master' of https://codeup.aliyun.com/62ce7bca487c500c27f70a79/OPS/WMS-Api
This commit is contained in:
@@ -31,12 +31,11 @@ namespace WMS.Web.Domain.Entitys
|
||||
/// <summary>
|
||||
/// 创建时间(对应老OPS的创建时间)
|
||||
/// </summary>
|
||||
public DateTime CreateTime { get; set; }
|
||||
public DateTime CreateTime { get; set; } = DateTime.Now;
|
||||
|
||||
/// <summary>
|
||||
/// 明细
|
||||
/// </summary>
|
||||
[NotMapped]
|
||||
public List<BoxDetails> Details = new List<BoxDetails>();
|
||||
}
|
||||
}
|
||||
|
||||
19
src/WMS.Web.Domain/Infrastructure/IBoxRepositories.cs
Normal file
19
src/WMS.Web.Domain/Infrastructure/IBoxRepositories.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
|
||||
namespace WMS.Web.Domain.Infrastructure
|
||||
{
|
||||
/// <summary>
|
||||
/// 老ops箱信息
|
||||
/// </summary>
|
||||
public interface IBoxRepositories
|
||||
{
|
||||
Task<Box> Get(string BoxBillNo);
|
||||
//根据箱号查询物料信息
|
||||
Task<List<BoxDetailResponse>> GetDetails(string BoxBillNo);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user