老ops箱仓储

This commit is contained in:
18942506660
2023-10-31 10:04:49 +08:00
parent bcedfe0189
commit b25c814b16
5 changed files with 61 additions and 2 deletions

View File

@@ -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>();
}
}

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Infrastructure
{
/// <summary>
/// 老ops箱信息
/// </summary>
public interface IBoxRepositories
{
Task<Box> Get(string BoxBillNo);
}
}