using Admin.NET.Core;
|
|
/*
|
* @author : 您的名字
|
* @date : 2024/5/31下午5:39:07
|
* @desc : DO单明细
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// DO单明细
|
/// </summary>
|
[SugarTable("wms_order_deliver_details", "DO单明细")]
|
public class WmsOrderDeliverDetails : EntityBase
|
{
|
|
|
/// <summary>
|
/// DO单ID
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "DoId", ColumnDescription = "DO单ID")]
|
public long DoId { get; set; }
|
|
|
/// <summary>
|
/// DO单号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "DoNo", ColumnDescription = "DO单号", Length = 50)]
|
|
public string DoNo { get; set; }
|
|
|
/// <summary>
|
/// 状态
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "DoDetailStatus", ColumnDescription = "状态")]
|
public OrderStatusEnum DoDetailStatus { get; set; }
|
|
|
/// <summary>
|
/// 状态名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "DoDetailStatusName", ColumnDescription = "状态名称", Length = 255)]
|
|
public string DoDetailStatusName { get; set; }
|
|
|
/// <summary>
|
/// 行号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "DoLineNumber", ColumnDescription = "行号", Length = 50)]
|
|
public string DoLineNumber { get; set; }
|
|
|
/// <summary>
|
/// 物料编号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialCode", ColumnDescription = "物料编号", Length = 50)]
|
|
public string MaterialCode { get; set; }
|
|
|
/// <summary>
|
/// 物料名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialName", ColumnDescription = "物料名称", Length = 50)]
|
|
public string MaterialName { get; set; }
|
|
|
/// <summary>
|
/// 单位
|
/// </summary>
|
[SugarColumn(ColumnName = "Unit", ColumnDescription = "单位", Length = 50)]
|
|
public string? Unit { get; set; }
|
|
|
/// <summary>
|
/// 数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量", Length = 10, DecimalDigits = 3)]
|
public decimal Quantity { get; set; }
|
|
|
/// <summary>
|
/// 已发货数
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "DeliverQuantity", ColumnDescription = "已发货数", Length = 10, DecimalDigits = 3)]
|
public decimal DeliverQuantity { get; set; }
|
|
|
/// <summary>
|
/// 已创建波次数
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "CreateWaveQuantity", ColumnDescription = "已创建波次数", Length = 10, DecimalDigits = 3)]
|
public decimal CreateMovementQuantity { get; set; }
|
|
|
/// <summary>
|
/// 标准包装
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "SNP", ColumnDescription = "标准包装", Length = 10, DecimalDigits = 3)]
|
public decimal? SNP { get; set; }
|
|
|
/// <summary>
|
/// 客户编号
|
/// </summary>
|
[SugarColumn(ColumnName = "CustCode", ColumnDescription = "客户编号", Length = 50)]
|
|
public string? CustCode { get; set; }
|
|
|
/// <summary>
|
/// 客户名称
|
/// </summary>
|
[SugarColumn(ColumnName = "CustName", ColumnDescription = "客户名称", Length = 255)]
|
|
public string? CustName { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
}
|