| | |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ£éè®°å½è¡¨ |
| | | /// </summary> |
| | | |
| | | |
| | | [SugarTable(nameof(Dt_PickingRecord), "æ£éè®°å½è¡¨")] |
| | | |
| | | public class Dt_PickingRecord : BaseEntity |
| | |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] |
| | | public int Id { get; set; } |
| | | |
| | | public int TaskNo { get; set; } |
| | | public int TaskNo { get; set; } |
| | | public string OrderNo { get; set; } |
| | | public int OrderDetailId { get; set; } |
| | | |
| | |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "barcodemoveQty", ColumnDescription = "æ°é")] |
| | | public decimal BarcodeMoveQty { get; set; } |
| | | |
| | | public int ReturnToMESStatus { get; set; } |
| | | |
| | | public string FeedBackMesDocumentNo { get; set; } |
| | | } |
| | | |
| | | |
| | |
| | | /// ååºæ°é |
| | | /// </summary> |
| | | public decimal ReturnQty { get; set; } |
| | | |
| | | |
| | | public DateTime ReturnTime { get; set; } |
| | | /// <summary> |
| | | /// 0-å¾
ååº 1-å·²ååº |
| | |
| | | /// æå
è®°å½è¡¨ |
| | | /// </summary> |
| | | [SugarTable("Dt_SplitPackageRecord")] |
| | | public class Dt_SplitPackageRecord: BaseEntity |
| | | public class Dt_SplitPackageRecord : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] |
| | | public int Id { get; set; } |
| | |
| | | public string PalletCode { get; set; } |
| | | public int StockId { get; set; } |
| | | public bool IsReverted { get; set; } = false; |
| | | |
| | | public bool IsAutoSplit { get; set; } = false; |
| | | public int OutStockLockInfoId { get; set; } // å
³èçåºåºéå®ä¿¡æ¯ |
| | | public string OriginalBarcode { get; set; } // åæ¡ç |
| | | public string NewBarcode { get; set; } // æ°æ¡ç |
| | | |
| | | public string FactoryArea { get; set; } |
| | | |
| | | public string FactoryArea { get; set; } |
| | | /// <summary> |
| | | /// æåæ°éï¼æ°æ¡ç æ°éï¼ |
| | | /// </summary> |
| | |
| | | [SugarColumn(IsNullable = true)] |
| | | public decimal? OriginalStockQuantity { get; set; } |
| | | |
| | | public decimal StockBeforeSplit { get; set; } |
| | | public decimal StockBeforeSplit { get; set; } |
| | | public decimal AssignBeforeSplit { get; set; } |
| | | } |
| | | |