| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>
- /// 出货计划明细表(ShippingPlanDetail)
- /// </summary>
- [SugarTable("ShippingPlanDetail", "出货计划明细表")]
- public class ShippingPlanDetail
- {
- [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true)]
- public int RecID { get; set; }
- [SugarColumn(ColumnName = "Domain", Length = 64, IsNullable = true)]
- public string? Domain { get; set; }
- [SugarColumn(ColumnName = "plan_id", IsNullable = true)]
- public int? PlanId { get; set; }
- [SugarColumn(ColumnName = "OrdNbr", Length = 64, IsNullable = true)]
- public string? OrdNbr { get; set; }
- [SugarColumn(ColumnName = "bill_no", Length = 64, IsNullable = true)]
- public string? BillNo { get; set; }
- [SugarColumn(ColumnName = "ItemNum", Length = 64, IsNullable = true)]
- public string? ItemNum { get; set; }
- [SugarColumn(ColumnName = "ItemName", Length = 128, IsNullable = true)]
- public string? ItemName { get; set; }
- [SugarColumn(ColumnName = "Specification", Length = 256, IsNullable = true)]
- public string? Specification { get; set; }
- [SugarColumn(ColumnName = "Qty", IsNullable = true)]
- public decimal? Qty { get; set; }
- [SugarColumn(ColumnName = "Packaging", Length = 256, IsNullable = true)]
- public string? Packaging { get; set; }
- [SugarColumn(ColumnName = "Weight", IsNullable = true)]
- public decimal? Weight { get; set; }
- [SugarColumn(ColumnName = "Volume", IsNullable = true)]
- public decimal? Volume { get; set; }
- [SugarColumn(ColumnName = "OrdDate", IsNullable = true)]
- public DateTime? OrdDate { get; set; }
- [SugarColumn(ColumnName = "Country", Length = 64, IsNullable = true)]
- public string? Country { get; set; }
- [SugarColumn(ColumnName = "CustomNo", Length = 64, IsNullable = true)]
- public string? CustomNo { get; set; }
- [SugarColumn(ColumnName = "CustomName", Length = 128, IsNullable = true)]
- public string? CustomName { get; set; }
- [SugarColumn(ColumnName = "seorder_id", IsNullable = true)]
- public int? SeOrderId { get; set; }
- [SugarColumn(ColumnName = "sentry_id", IsNullable = true)]
- public long? SentryId { get; set; }
- [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
- public string? Remark { get; set; }
- [SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)]
- public string? Status { get; set; }
- [SugarColumn(ColumnName = "CreateUser", Length = 64, IsNullable = true)]
- public string? CreateUser { get; set; }
- [SugarColumn(ColumnName = "UpdateUser", Length = 64, IsNullable = true)]
- public string? UpdateUser { get; set; }
- [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
- public int? IsActive { get; set; }
- [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
- public int? IsConfirm { get; set; }
- }
|