diff --git a/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/KanBan/KanBan.cs b/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/KanBan/KanBan.cs index abb5d30d..8f23969b 100644 --- a/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/KanBan/KanBan.cs +++ b/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/KanBan/KanBan.cs @@ -8,7 +8,7 @@ namespace Win.Sfs.SettleAccount.Entities.KanBan { - /*看板条码号 + /* 看板条码号 * 入库关联号 * 工厂 * 零件号 @@ -25,12 +25,66 @@ namespace Win.Sfs.SettleAccount.Entities.KanBan * 数量 * 结算状态 */ - class KanBan + public class KanBan { + /// + /// 看板条码号 + /// public string Kanban { set; get; } + + /// + /// 入库关联号 + /// + public string Relation { set; get; } + /// + /// 工厂 + /// public string Factory { set; get; } + /// + /// 零件号 + /// public string MaterialCode { set; get; } + /// + /// 零件类型 + /// public string PartType { set; get; } + /// + /// 供应商编码 + /// + public string SupplierCode { set; get; } + /// + /// R3入库时间 + /// + public DateTime SettleInputDate { set; get; } + + + /// + /// 批次 + /// + public string Batch { set; get; } + + + /// + /// 入库结算标识 + /// + public string Flag { set; get; } + /// + /// 数量 + /// + public decimal Qty { set; get; } + + + /// + /// R3结算时间 + /// + public DateTime SettleDate { set; get; } + /// + /// 结算状态 + /// + public int State { set; get; } + + +