| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- 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; }
- /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|