GspOutMT.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class GspOutMT
  8. {
  9. private int _billno;
  10. private string _entid;
  11. private string _billcode;
  12. private string _ruleid;
  13. private string _dates;
  14. private string _ontime;
  15. private string _sysdates;
  16. private string _clientid;
  17. private string _salesmanid;
  18. private string _acceptid;
  19. private string _inspectorid;
  20. private string _attnid;
  21. private string _deptid;
  22. private string _orgid;
  23. private string _caozy;
  24. private string _summaries;
  25. private string _remark;
  26. private string _isdone;
  27. private string _isqadone;
  28. private string _k_billcode;
  29. private string _source;
  30. private string _StaffName;
  31. private string _Contact;
  32. private string _OppContact;
  33. public GspOutMT()
  34. {
  35. }
  36. public int BillNo
  37. {
  38. get { return _billno; }
  39. set { _billno = value; }
  40. }
  41. public string EntId
  42. {
  43. get { return _entid; }
  44. set { _entid = value; }
  45. }
  46. public string BillCode
  47. {
  48. get { return _billcode; }
  49. set { _billcode = value; }
  50. }
  51. public string RuleId
  52. {
  53. get { return _ruleid; }
  54. set { _ruleid = value; }
  55. }
  56. public string Dates
  57. {
  58. get { return _dates; }
  59. set { _dates = value; }
  60. }
  61. public string OnTime
  62. {
  63. get { return _ontime; }
  64. set { _ontime = value; }
  65. }
  66. public string SysDates
  67. {
  68. get { return _sysdates; }
  69. set { _sysdates = value; }
  70. }
  71. public string ClientId
  72. {
  73. get { return _clientid; }
  74. set { _clientid = value; }
  75. }
  76. public string SalesmanId
  77. {
  78. get { return _salesmanid; }
  79. set { _salesmanid = value; }
  80. }
  81. public string AcceptId
  82. {
  83. get { return _acceptid; }
  84. set { _acceptid = value; }
  85. }
  86. public string InspectorId
  87. {
  88. get { return _inspectorid; }
  89. set { _inspectorid = value; }
  90. }
  91. public string AttnId
  92. {
  93. get { return _attnid; }
  94. set { _attnid = value; }
  95. }
  96. public string DeptId
  97. {
  98. get { return _deptid; }
  99. set { _deptid = value; }
  100. }
  101. public string OrgId
  102. {
  103. get { return _orgid; }
  104. set { _orgid = value; }
  105. }
  106. public string caozy
  107. {
  108. get { return _caozy; }
  109. set { _caozy = value; }
  110. }
  111. public string Summaries
  112. {
  113. get { return _summaries; }
  114. set { _summaries = value; }
  115. }
  116. public string Remark
  117. {
  118. get { return _remark; }
  119. set { _remark = value; }
  120. }
  121. public string IsDone
  122. {
  123. get { return _isdone; }
  124. set { _isdone = value; }
  125. }
  126. public string IsQADone
  127. {
  128. get { return _isqadone; }
  129. set { _isqadone = value; }
  130. }
  131. public string K_BillCode
  132. {
  133. get { return _k_billcode; }
  134. set { _k_billcode = value; }
  135. }
  136. public string Source
  137. {
  138. get { return _source; }
  139. set { _source = value; }
  140. }
  141. public string StaffName { get => _StaffName; set => _StaffName = value; }
  142. public string Contact { get => _Contact; set => _Contact = value; }
  143. public string OppContact { get => _OppContact; set => _OppContact = value; }
  144. }
  145. }