so_saleorder.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HH.YiDaSyncNC.Dtos.NC
  8. {
  9. [SugarTable("so_saleorder")]
  10. public class so_saleorder
  11. {
  12. public so_saleorder()
  13. {
  14. }
  15. /// <summary>
  16. /// Desc:
  17. /// Default:
  18. /// Nullable:False
  19. /// </summary>
  20. [SugarColumn(IsPrimaryKey = true)]
  21. public string csaleorderid { get; set; }
  22. public string approver { get; set; } = "~";
  23. public string badvfeeflag { get; set; }
  24. public string barsettleflag { get; set; }
  25. public string bcooptopoflag { get; set; }
  26. public string bcostsettleflag { get; set; }
  27. public string bfreecustflag { get; set; }
  28. public string billmaker { get; set; }
  29. public string binvoicendflag { get; set; }
  30. public string boffsetflag { get; set; }
  31. public string boutendflag { get; set; }
  32. public string bpocooptomeflag { get; set; }
  33. public string bpreceiveflag { get; set; }
  34. public string bsendendflag { get; set; }
  35. public string carsubtypeid { get; set; } = "~";
  36. public string cbalancetypeid { get; set; } = "~";
  37. public string cbillsrcid { get; set; } = "~";
  38. public string cbiztypeid { get; set; }
  39. public string cchanneltypeid { get; set; } = "~";
  40. public string ccustbankaccid { get; set; } = "~";
  41. public string ccustbankid { get; set; } = "~";
  42. public string ccustomerid { get; set; }
  43. public string cdeptid { get; set; }
  44. public string cdeptvid { get; set; }
  45. public string cemployeeid { get; set; } = "~";
  46. public string cfreecustid { get; set; } = "~";
  47. public string chreceiveaddid { get; set; } = "~";
  48. public string chreceivecustid { get; set; }
  49. public string cinvoicecustid { get; set; }
  50. public string corigcurrencyid { get; set; }
  51. public string cpaytermid { get; set; }
  52. public string creationtime { get; set; }
  53. public string creator { get; set; }
  54. public string creviserid { get; set; } = "~";
  55. public string ctradewordid { get; set; } = "~";
  56. public string ctransporttypeid { get; set; } = "~";
  57. public string ctrantypeid { get; set; }
  58. public string dbilldate { get; set; }
  59. public string dmakedate { get; set; }
  60. public Int16? dr { get; set; }
  61. public Int16? fpfstatusflag { get; set; }
  62. public Int16? fstatusflag { get; set; }
  63. public int? iprintcount { get; set; }
  64. public int? iversion { get; set; }
  65. public string modifiedtime { get; set; }
  66. public string modifier { get; set; } = "~";
  67. public decimal? ndiscountrate { get; set; }
  68. public decimal? nlrgtotalorigmny { get; set; }
  69. public decimal? npreceivemny { get; set; }
  70. public decimal? npreceivequota { get; set; }
  71. public decimal? npreceiverate { get; set; }
  72. public decimal? nreceivedmny { get; set; }
  73. public decimal? ntotalnum { get; set; }
  74. public decimal? ntotalorigmny { get; set; }
  75. public decimal? ntotalorigsubmny { get; set; }
  76. public decimal? ntotalpiece { get; set; }
  77. public decimal? ntotalvolume { get; set; }
  78. public decimal? ntotalweight { get; set; }
  79. public string pk_group { get; set; }
  80. public string pk_org { get; set; }
  81. public string pk_org_v { get; set; }
  82. public string taudittime { get; set; }
  83. public string trevisetime { get; set; }
  84. public string ts { get; set; }
  85. public string vbillcode { get; set; }
  86. public string vbillsrctype { get; set; } = "~";
  87. public string vcooppohcode { get; set; }
  88. public string vcreditnum { get; set; } = "~";
  89. public string vdef1 { get; set; }
  90. public string vdef10 { get; set; } = "~";
  91. public string vdef11 { get; set; } = "~";
  92. public string vdef12 { get; set; } = "~";
  93. public string vdef13 { get; set; } = "~";
  94. public string vdef14 { get; set; } = "~";
  95. public string vdef15 { get; set; } = "~";
  96. public string vdef16 { get; set; } = "~";
  97. public string vdef17 { get; set; } = "~";
  98. public string vdef18 { get; set; } = "~";
  99. public string vdef19 { get; set; } = "~";
  100. public string vdef2 { get; set; } = "~";
  101. public string vdef20 { get; set; } = "~";
  102. public string vdef3 { get; set; } = "~";
  103. public string vdef4 { get; set; }
  104. public string vdef5 { get; set; }
  105. public string vdef6 { get; set; } = "~";
  106. public string vdef7 { get; set; } = "~";
  107. public string vdef8 { get; set; }
  108. public string vdef9 { get; set; } = "~";
  109. public string vnote { get; set; }
  110. public string vrevisereason { get; set; }
  111. public string vtrantypecode { get; set; }
  112. }
  113. }