| 1234567891011121314151617181920212223242526272829303132 |
- namespace Admin.NET.Plugin.AiDOP.Supply;
- /// <summary>
- /// 交货单异常记录(DeliveryExceptionMaster)
- /// </summary>
- [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; }
- }
|