namespace Admin.NET.Plugin.AiDOP.Supply; /// /// 交货单异常记录(DeliveryExceptionMaster) /// [SugarTable("DeliveryExceptionMaster", "交货单异常记录")] public class DeliveryExceptionMaster { [SugarColumn(ColumnName = "RecID", IsIdentity = false)] public long RecID { get; set; } [SugarColumn(ColumnName = "Domain", Length = 8, IsNullable = true)] public string? Domain { get; set; } [SugarColumn(ColumnName = "Icdsid", IsNullable = true)] public long? IcdsId { get; set; } [SugarColumn(ColumnName = "OptTime", IsNullable = true)] public DateTime? OptTime { get; set; } [SugarColumn(ColumnName = "ItemNum", Length = 30, IsNullable = true)] public string? ItemNum { get; set; } [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)] public string? Remark { get; set; } [SugarColumn(ColumnName = "NeedQty", IsNullable = true)] public decimal? NeedQty { get; set; } [SugarColumn(ColumnName = "tenant_id", IsNullable = true)] public long? TenantId { get; set; } }