| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>
- /// 出货计划主表(ShippingPlan)
- /// </summary>
- [SugarTable("ShippingPlan", "出货计划表")]
- public class ShippingPlan
- {
- [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true)]
- public int RecID { get; set; }
- [SugarColumn(ColumnName = "Domain", Length = 64, IsNullable = true)]
- public string? Domain { get; set; }
- [SugarColumn(ColumnName = "LotSerial", Length = 64, IsNullable = true)]
- public string? LotSerial { get; set; }
- [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
- public string? Remark { get; set; }
- [SugarColumn(ColumnName = "ShippingSite", Length = 128, IsNullable = true)]
- public string? ShippingSite { 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; }
- [SugarColumn(ColumnName = "Priority", IsNullable = true)]
- public int? Priority { get; set; }
- [SugarColumn(ColumnName = "ShippingDate", IsNullable = true)]
- public DateTime? ShippingDate { get; set; }
- [SugarColumn(ColumnName = "ShippingAddress", Length = 256, IsNullable = true)]
- public string? ShippingAddress { get; set; }
- [SugarColumn(ColumnName = "Consignee", Length = 128, IsNullable = true)]
- public string? Consignee { get; set; }
- [SugarColumn(ColumnName = "Telephone", Length = 64, IsNullable = true)]
- public string? Telephone { get; set; }
- }
|