箱信息实体对象

This commit is contained in:
tongfei
2023-10-30 10:03:15 +08:00
parent a297330ea0
commit 1c414c4fd2
5 changed files with 172 additions and 5 deletions

View File

@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// 老ops箱信息头
/// </summary>
[Serializable]
[Table("t_ops_box")]
public class Box
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 对应老OPS的箱ID
/// </summary>
public int OpsBoxId { get; set; }
/// <summary>
/// 箱编号老OPS生成的箱号
/// </summary>
public string BoxBillNo { get; set; }
/// <summary>
/// 创建时间对应老OPS的创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 明细
/// </summary>
[NotMapped]
public List<BoxDetails> Details = new List<BoxDetails>();
}
}