实体对象

This commit is contained in:
tongfei
2023-10-26 14:02:46 +08:00
parent dcd7a7567c
commit e7b5a8d494
7 changed files with 580 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Domain.Values;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// erp入库任务表
/// </summary>
[Serializable]
[Table("t_erp_instock_task")]
public class InstockTask
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 单据编号
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 入库状态
/// </summary>
public InstockStatus Status { get; set; }
/// <summary>
/// 入库类型
/// </summary>
public InstockType Type { get; set; }
/// <summary>
/// 收货人
/// </summary>
public int ReceiverId { get; set; }
/// <summary>
/// 收货时间
/// </summary>
public DateTime ReceiveTime { get; set; }
/// <summary>
/// 操作人(上架人)
/// </summary>
public int OperatorId { get; set; }
/// <summary>
/// 操作时间(入库时间)
/// </summary>
public DateTime OperateTime { get; set; }
}
}