箱信息实体对象
This commit is contained in:
42
src/WMS.Web.Domain/Entitys/Box.cs
Normal file
42
src/WMS.Web.Domain/Entitys/Box.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user