AsnShipperMaster.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. namespace Admin.NET.Plugin.AiDOP.Order;
  2. /// <summary>
  3. /// 閿€鍞彂璐т富琛紙ASNBOLShipperMaster锛?
  4. /// </summary>
  5. [SugarTable("ASNBOLShipperMaster", "閿€鍞鍗曞彂璐ч€氱煡")]
  6. public class AsnShipperMaster
  7. {
  8. [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = true)]
  9. public int RecID { get; set; }
  10. [SugarColumn(ColumnName = "Domain", Length = 64, IsNullable = true)]
  11. public string? Domain { get; set; }
  12. /// <summary>璐ц繍鍗曞彿</summary>
  13. [SugarColumn(ColumnName = "Id", Length = 64, IsNullable = true)]
  14. public string? Id { get; set; }
  15. [SugarColumn(ColumnName = "OrdNbr", Length = 64, IsNullable = true)]
  16. public string? OrdNbr { get; set; }
  17. [SugarColumn(ColumnName = "Department", Length = 64, IsNullable = true)]
  18. public string? Department { get; set; }
  19. [SugarColumn(ColumnName = "SoldTo", Length = 64, IsNullable = true)]
  20. public string? SoldTo { get; set; }
  21. [SugarColumn(ColumnName = "ShipDate", IsNullable = true)]
  22. public DateTime? ShipDate { get; set; }
  23. [SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)]
  24. public string? Status { get; set; }
  25. [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
  26. public string? Remark { get; set; }
  27. /// <summary>閿€鍞嚭璐х被鍨嬶紙SH=鍙戣揣锛?/summary>
  28. [SugarColumn(ColumnName = "ShType", Length = 16, IsNullable = true)]
  29. public string? ShType { get; set; }
  30. /// <summary>杈撳叆绫诲瀷锛圫=瀛愮被鍨嬶紝杩囨护鐢級</summary>
  31. [SugarColumn(ColumnName = "Typed", Length = 16, IsNullable = true)]
  32. public string? Typed { get; set; }
  33. [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
  34. public int? IsActive { get; set; }
  35. [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
  36. public int? IsConfirm { get; set; }
  37. [SugarColumn(ColumnName = "Site", Length = 64, IsNullable = true)]
  38. public string? Site { get; set; }
  39. [SugarColumn(ColumnName = "Descr", Length = 256, IsNullable = true)]
  40. public string? Descr { get; set; }
  41. [SugarColumn(ColumnName = "GrossWeight", IsNullable = true)]
  42. public decimal? GrossWeight { get; set; }
  43. [SugarColumn(ColumnName = "NetWeight", IsNullable = true)]
  44. public decimal? NetWeight { get; set; }
  45. [SugarColumn(ColumnName = "Volume", IsNullable = true)]
  46. public decimal? Volume { get; set; }
  47. [SugarColumn(ColumnName = "CreateUser", Length = 64, IsNullable = true)]
  48. public string? CreateUser { get; set; }
  49. [SugarColumn(ColumnName = "UpdateUser", Length = 64, IsNullable = true)]
  50. public string? UpdateUser { get; set; }
  51. [SugarColumn(ColumnName = "CreateTime2", IsNullable = true)]
  52. public DateTime? CreateTime { get; set; }
  53. [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
  54. public DateTime? UpdateTime { get; set; }
  55. /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
  56. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  57. public long? TenantId { get; set; }
  58. }