namespace Admin.NET.Plugin.AiDOP.Order; /// /// 閿€鍞彂璐т富琛紙ASNBOLShipperMaster锛? /// [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; } /// 璐ц繍鍗曞彿 [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; } /// 閿€鍞嚭璐х被鍨嬶紙SH=鍙戣揣锛?/summary> [SugarColumn(ColumnName = "ShType", Length = 16, IsNullable = true)] public string? ShType { get; set; } /// 杈撳叆绫诲瀷锛圫=瀛愮被鍨嬶紝杩囨护鐢級 [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; } /// 绉熸埛ID锛堝绉熸埛闅旂锛?/summary> [SugarColumn(ColumnName = "tenant_id", IsNullable = true)] public long? TenantId { get; set; } }