| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>
- /// 閿€鍞彂璐т富琛紙ASNBOLShipperMaster锛?
- /// </summary>
- [SugarTable("ASNBOLShipperMaster", "閿€鍞鍗曞彂璐ч€氱煡")]
- public class AsnShipperMaster
- {
- [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = true)]
- public int RecID { get; set; }
- [SugarColumn(ColumnName = "Domain", Length = 64, IsNullable = true)]
- public string? Domain { get; set; }
- /// <summary>璐ц繍鍗曞彿</summary>
- [SugarColumn(ColumnName = "Id", Length = 64, IsNullable = true)]
- public string? Id { get; set; }
- [SugarColumn(ColumnName = "OrdNbr", Length = 64, IsNullable = true)]
- public string? OrdNbr { get; set; }
- [SugarColumn(ColumnName = "Department", Length = 64, IsNullable = true)]
- public string? Department { get; set; }
- [SugarColumn(ColumnName = "SoldTo", Length = 64, IsNullable = true)]
- public string? SoldTo { get; set; }
- [SugarColumn(ColumnName = "ShipDate", IsNullable = true)]
- public DateTime? ShipDate { get; set; }
- [SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)]
- public string? Status { get; set; }
- [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
- public string? Remark { get; set; }
- /// <summary>閿€鍞嚭璐х被鍨嬶紙SH=鍙戣揣锛?/summary>
- [SugarColumn(ColumnName = "ShType", Length = 16, IsNullable = true)]
- public string? ShType { get; set; }
- /// <summary>杈撳叆绫诲瀷锛圫=瀛愮被鍨嬶紝杩囨护鐢級</summary>
- [SugarColumn(ColumnName = "Typed", Length = 16, IsNullable = true)]
- public string? Typed { get; set; }
- [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
- public int? IsActive { get; set; }
- [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
- public int? IsConfirm { get; set; }
- [SugarColumn(ColumnName = "Site", Length = 64, IsNullable = true)]
- public string? Site { get; set; }
- [SugarColumn(ColumnName = "Descr", Length = 256, IsNullable = true)]
- public string? Descr { get; set; }
- [SugarColumn(ColumnName = "GrossWeight", IsNullable = true)]
- public decimal? GrossWeight { get; set; }
- [SugarColumn(ColumnName = "NetWeight", IsNullable = true)]
- public decimal? NetWeight { get; set; }
- [SugarColumn(ColumnName = "Volume", IsNullable = true)]
- public decimal? Volume { 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 = "CreateTime2", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|