using Admin.NET.Core;
|
|
/*
|
* @author : 您的名字
|
* @date : 2024/6/4上午11:54:51
|
* @desc : 移动单明细
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 移动单明细
|
/// </summary>
|
[SugarTable("wms_order_movement_details", "移动单明细")]
|
public class WmsOrderMovementDetails : EntityBase
|
{
|
|
|
/// <summary>
|
/// 移动单ID
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "MovementId", ColumnDescription = "移动单ID")]
|
public long MovementId { get; set; }
|
|
|
/// <summary>
|
/// 移动单号
|
/// </summary>
|
[SugarColumn(ColumnName = "MovementNo", ColumnDescription = "移动单号", Length = 50)]
|
|
public string? MovementNo { get; set; }
|
|
|
/// <summary>
|
/// 行号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "LineNumber", ColumnDescription = "行号", Length = 50)]
|
|
public string LineNumber { 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>
|
[Required]
|
|
[SugarColumn(ColumnName = "OrderStatus", ColumnDescription = "单据状态")]
|
public OrderStatusEnum OrderStatus { get; set; }
|
|
|
/// <summary>
|
/// 单据状态名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "OrderStatusName", ColumnDescription = "单据状态名称", Length = 255)]
|
|
public string OrderStatusName { get; set; }
|
|
|
/// <summary>
|
/// 跟踪码
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SNCode", ColumnDescription = "跟踪码", Length = 255)]
|
|
public string? SNCode { get; set; }
|
|
|
/// <summary>
|
/// 供应商批次
|
/// </summary>
|
[SugarColumn(ColumnName = "SupplierBatch", ColumnDescription = "供应商批次", Length = 50)]
|
|
public string? SupplierBatch { get; set; }
|
|
|
/// <summary>
|
/// 批次规则
|
/// </summary>
|
[SugarColumn(ColumnName = "BatchRule", ColumnDescription = "批次规则", Length = 255)]
|
|
public string? BatchRule { get; set; }
|
|
|
/// <summary>
|
/// 批次
|
/// </summary>
|
[SugarColumn(ColumnName = "Batch", ColumnDescription = "批次", Length = 255)]
|
|
public string? Batch { get; set; }
|
|
|
/// <summary>
|
/// 数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量", Length = 10, DecimalDigits = 3)]
|
public decimal Quantity { get; set; }
|
|
|
|
/// <summary>
|
/// 预配数
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PredetermineQuantity", ColumnDescription = "预配数", Length = 10, DecimalDigits = 3)]
|
public decimal PredetermineQuantity { get; set; }
|
|
|
/// <summary>
|
/// 拣货数
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PickQuantity", ColumnDescription = "拣货数", Length = 10, DecimalDigits = 3)]
|
public decimal PickQuantity { get; set; }
|
|
/// <summary>
|
/// 上架数
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OnShelvesQuantity", ColumnDescription = "上架数", Length = 10, DecimalDigits = 3)]
|
public decimal? OnShelvesQuantity { get; set; }
|
|
|
/// <summary>
|
/// 下架数
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "OffShelvesQuantity", ColumnDescription = "下架数", Length = 10, DecimalDigits = 3)]
|
public decimal OffShelvesQuantity { get; set; }
|
|
|
/// <summary>
|
/// 创建波次数
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "CreateWaveQuantity", ColumnDescription = "创建波次数", Length = 10, DecimalDigits = 3)]
|
public decimal CreateWaveQuantity { get; set; }
|
|
|
/// <summary>
|
/// 单位
|
/// </summary>
|
[SugarColumn(ColumnName = "Unit", ColumnDescription = "单位", Length = 50)]
|
|
public string? Unit { get; set; }
|
|
|
|
|
/// <summary>
|
/// 关联单号
|
/// </summary>
|
[SugarColumn(ColumnName = "RelationNo", ColumnDescription = "关联单号", Length = 50)]
|
|
public string? RelationNo { get; set; }
|
|
|
|
|
/// <summary>
|
/// 关联单行号
|
/// </summary>
|
[SugarColumn(ColumnName = "RelationNoLineNumber", ColumnDescription = "关联单行号", Length = 50)]
|
|
public string? RelationNoLineNumber { get; set; }
|
|
|
/// <summary>
|
/// ERP单号
|
/// </summary>
|
[SugarColumn(ColumnName = "ErpOrderNo", ColumnDescription = "ERP单号", Length = 50)]
|
|
public string? ErpOrderNo { get; set; }
|
|
|
/// <summary>
|
/// ERP库存地
|
/// </summary>
|
[SugarColumn(ColumnName = "ErpCode", ColumnDescription = "ERP库存地", Length = 50)]
|
|
public string? ErpCode { get; set; }
|
|
|
/// <summary>
|
/// 容器编号
|
/// </summary>
|
[SugarColumn(ColumnName = "ContainerCode", ColumnDescription = "容器编号", Length = 50)]
|
|
public string? ContainerCode { get; set; }
|
|
|
/// <summary>
|
/// 容器名称
|
/// </summary>
|
[SugarColumn(ColumnName = "ContainerName", ColumnDescription = "容器名称", Length = 50)]
|
|
public string? ContainerName { get; set; }
|
|
|
/// <summary>
|
/// 供应商编号
|
/// </summary>
|
[SugarColumn(ColumnName = "SupplierCode", ColumnDescription = "供应商编号", Length = 50)]
|
|
public string? SupplierCode { get; set; }
|
|
|
/// <summary>
|
/// 供应商名称
|
/// </summary>
|
[SugarColumn(ColumnName = "SupplierName", ColumnDescription = "供应商名称", Length = 50)]
|
|
public string? SupplierName { 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; }
|
|
|
/// <summary>
|
/// 源库位编号
|
/// </summary>
|
[SugarColumn(ColumnName = "SourcePlaceCode", ColumnDescription = "源库位编号", Length = 50)]
|
|
public string? SourcePlaceCode { get; set; }
|
|
|
/// <summary>
|
/// 源库位名称
|
/// </summary>
|
[SugarColumn(ColumnName = "SourcePlaceName", ColumnDescription = "源库位名称", Length = 50)]
|
|
public string? SourcePlaceName { get; set; }
|
|
|
|
|
|
|
/// <summary>
|
/// 源仓库编号
|
/// </summary>
|
[SugarColumn(ColumnName = "SourceWarehouseCode", ColumnDescription = "源仓库编号", Length = 50)]
|
|
public string? SourceWarehouseCode { get; set; }
|
|
|
/// <summary>
|
/// 源仓库名称
|
/// </summary>
|
[SugarColumn(ColumnName = "SourceWarehouseName", ColumnDescription = "源仓库名称", Length = 50)]
|
|
public string? SourceWarehouseName { get; set; }
|
|
|
/// <summary>
|
/// 源库区编码
|
/// </summary>
|
[SugarColumn(ColumnName = "SourceAreaCode", ColumnDescription = "源库区编码", Length = 50)]
|
|
public string? SourceAreaCode { get; set; }
|
|
|
/// <summary>
|
/// 源库区名称
|
/// </summary>
|
[SugarColumn(ColumnName = "SourceAreaName", ColumnDescription = "源库区名称", Length = 50)]
|
|
public string? SourceAreaName { get; set; }
|
|
|
/// <summary>
|
/// 目标仓库编号
|
/// </summary>
|
[SugarColumn(ColumnName = "ToWarehouseCode", ColumnDescription = "目标仓库编号", Length = 50)]
|
|
public string? ToWarehouseCode { get; set; }
|
|
|
/// <summary>
|
/// 目标仓库名称
|
/// </summary>
|
[SugarColumn(ColumnName = "ToWarehouseName", ColumnDescription = "目标仓库名称", Length = 50)]
|
|
public string? ToWarehouseName { get; set; }
|
|
|
/// <summary>
|
/// 目标库区编号
|
/// </summary>
|
[SugarColumn(ColumnName = "ToAreaCode", ColumnDescription = "目标库区编号", Length = 50)]
|
|
public string? ToAreaCode { get; set; }
|
|
|
/// <summary>
|
/// 目标库区名称
|
/// </summary>
|
[SugarColumn(ColumnName = "ToAreaName", ColumnDescription = "目标库区名称", Length = 50)]
|
|
public string? ToAreaName { get; set; }
|
|
|
/// <summary>
|
/// 目标库位编码
|
/// </summary>
|
[SugarColumn(ColumnName = "ToPlaceCode", ColumnDescription = "目标库位编码", Length = 50)]
|
|
public string? ToPlaceCode { get; set; }
|
|
|
/// <summary>
|
/// 目标库位名称
|
/// </summary>
|
[SugarColumn(ColumnName = "ToPlaceName", ColumnDescription = "目标库位名称", Length = 50)]
|
|
public string? ToPlaceName { get; set; }
|
|
|
/// <summary>
|
/// 操作备注
|
/// </summary>
|
[SugarColumn(ColumnName = "ActionRemark", ColumnDescription = "操作备注", Length = 255)]
|
|
public string? ActionRemark { get; set; }
|
|
|
/// <summary>
|
/// 操作时间
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ActionTime", ColumnDescription = "操作时间")]
|
public DateTime? ActionTime { get; set; }
|
|
|
|
/// <summary>
|
/// 优先级
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Priority", ColumnDescription = "优先级")]
|
public int? Priority { get; set; }
|
|
|
}
|
}
|