圣珀
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

230 lines
7.5 KiB

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class CustomerInsertDataClass
  8. {
  9. private string _OrgCode;//组织编码
  10. public string OrgCode
  11. {
  12. get { return _OrgCode; }
  13. set { _OrgCode = value; }
  14. }
  15. //private string _CustomerCode;//客户编码(只传区号,流水码程序获取)
  16. //public string CustomerCode
  17. //{
  18. // get { return _CustomerCode; }
  19. // set { _CustomerCode = value; }
  20. //}
  21. private string _CustomerName;//客户名称
  22. public string CustomerName
  23. {
  24. get { return _CustomerName; }
  25. set { _CustomerName = value; }
  26. }
  27. private string _ShortName;//客户简称
  28. public string ShrotName
  29. {
  30. get { return _ShortName; }
  31. set { _ShortName = value; }
  32. }
  33. private string _CustomerType;//客户分类
  34. public string CustomerType
  35. {
  36. get { return _CustomerType; }
  37. set { _CustomerType = value; }
  38. }
  39. private string _CustomerUser;//业务员
  40. public string CustomerUser
  41. {
  42. get { return _CustomerUser; }
  43. set { _CustomerUser = value; }
  44. }
  45. private int _SaleType;//允限销类型(默认"不控制")
  46. public int SaleType
  47. {
  48. get { return _SaleType; }
  49. set { _SaleType = value; }
  50. }
  51. private string _PriceListCode;//价目表Code
  52. public string PriceListCode
  53. {
  54. get { return _PriceListCode; }
  55. set { _PriceListCode = value; }
  56. }
  57. private bool _IsPriceListModify;//价目表可改(默认打勾)
  58. public bool IsPriceListModify
  59. {
  60. get { return _IsPriceListModify; }
  61. set { _IsPriceListModify = value; }
  62. }
  63. private string _SupplySource;//供应来源
  64. public string SupplySource
  65. {
  66. get { return _SupplySource; }
  67. set { _SupplySource = value; }
  68. }
  69. private string _DemandTransType;//供应类型
  70. public string DemandTransType
  71. {
  72. get { return _DemandTransType; }
  73. set { _DemandTransType = value; }
  74. }
  75. private string _SupplyOrgCode;//供应组织编码
  76. public string SupplyOrgCode
  77. {
  78. get { return _SupplyOrgCode; }
  79. set { _SupplyOrgCode = value; }
  80. }
  81. private string _WHCode;//存储地点编码(苏州八方、戈雅默认“成品仓库”,其他组织暂为空)
  82. public string WHCode
  83. {
  84. get { return _WHCode; }
  85. set { _WHCode = value; }
  86. }
  87. private string _ShippmentRuleCode;//出货原则编码(默认八方出货规则)
  88. public string ShippmentRule
  89. {
  90. get { return _ShippmentRuleCode; }
  91. set { _ShippmentRuleCode = value; }
  92. }
  93. private bool _IsShipmentModify;//出货原则可改(默认为Ture)
  94. public bool IsShipmentModify
  95. {
  96. get { return _IsShipmentModify; }
  97. set { _IsShipmentModify = value; }
  98. }
  99. private string _TaxScheduleCode;//税组合编码
  100. public string TaxScheduleCode
  101. {
  102. get { return _TaxScheduleCode; }
  103. set { _TaxScheduleCode = value; }
  104. }
  105. private string _RecervalTermCode;//收款条件编码
  106. public string RecervalTermCode
  107. {
  108. get { return _RecervalTermCode; }
  109. set { _RecervalTermCode = value; }
  110. }
  111. private bool _IsRecTermModify;//收款条件可改(默认为True)
  112. public bool IsRecTermModify
  113. {
  114. get { return _IsRecTermModify; }
  115. set { _IsRecTermModify = value; }
  116. }
  117. private int _QualityPledge;//质保方式(默认为空)
  118. public int QualityPledge
  119. {
  120. get { return _QualityPledge; }
  121. set { _QualityPledge = value; }
  122. }
  123. private string _ARConfirmTermCode;//立账条件
  124. public string ARConfirmTerm
  125. {
  126. get { return _ARConfirmTermCode; }
  127. set { _ARConfirmTermCode = value; }
  128. }
  129. private bool _IsARCfmModify;//立账条件可改(默认为true)
  130. public bool IsARCfmModify
  131. {
  132. get { return _IsARCfmModify; }
  133. set { _IsARCfmModify = value; }
  134. }
  135. private string _InvoiceVerificationOrder;//核销顺序
  136. public string InvoiceVerificationOrder
  137. {
  138. get { return _InvoiceVerificationOrder; }
  139. set { _InvoiceVerificationOrder = value; }
  140. }
  141. private string _VerificationMode;//核销明细
  142. public string VerificationMode
  143. {
  144. get { return _VerificationMode; }
  145. set { _VerificationMode = value; }
  146. }
  147. private bool _IsByAccountAge;//按账龄催款(默认为True)
  148. public bool IsByAccountAge
  149. {
  150. get { return _IsByAccountAge; }
  151. set { _IsByAccountAge = value; }
  152. }
  153. private int _CheckAccountPeriod;//对账期间(默认为3)
  154. public int CheckAccountPeriod
  155. {
  156. get { return _CheckAccountPeriod; }
  157. set { _CheckAccountPeriod = value; }
  158. }
  159. private int _TradeCategory;//行业
  160. public int TradeCategory
  161. {
  162. get { return _TradeCategory; }
  163. set { _TradeCategory = value; }
  164. }
  165. private DateTime _EfftiveDate;//生效日期
  166. public DateTime EfftiveDate
  167. {
  168. get { return _EfftiveDate; }
  169. set { _EfftiveDate = value; }
  170. }
  171. private string _CurrencyName;//交易币种(旧)
  172. public string CurrencyName
  173. {
  174. get { return _CurrencyName; }
  175. set { _CurrencyName = value; }
  176. }
  177. private string _TradeCurrencyName;//交易币种
  178. public string TradeCurrencyName
  179. {
  180. get { return _TradeCurrencyName; }
  181. set { _TradeCurrencyName = value; }
  182. }
  183. private string _ReceiveCurrencyName;//收款币种
  184. public string ReceiveCurrencyName
  185. {
  186. get { return _ReceiveCurrencyName; }
  187. set { _ReceiveCurrencyName = value; }
  188. }
  189. private string _CorpUnifyCode;//工商注册码
  190. public string CorpUnifyCode
  191. {
  192. get { return _CorpUnifyCode; }
  193. set { _CorpUnifyCode = value; }
  194. }
  195. private string _StateTaxNo;//纳锐人识别号
  196. public string StateTaxNo
  197. {
  198. get { return _StateTaxNo; }
  199. set { _StateTaxNo = value; }
  200. }
  201. private string _CusAddress;//注册地址
  202. public string CusAddress
  203. {
  204. get { return _CusAddress; }
  205. set { _CusAddress = value; }
  206. }
  207. private string _OfficialLocation;//收货地址
  208. public string OfficialLocation
  209. {
  210. get { return _OfficialLocation; }
  211. set { _OfficialLocation = value; }
  212. }
  213. private string _pubDescSeg11;//客户类型
  214. public string pubDescSeg11
  215. {
  216. get { return _pubDescSeg11; }
  217. set { _pubDescSeg11 = value; }
  218. }
  219. public string customertype { get; set; }
  220. public string areaDivision { get; set; }
  221. public string emterritory { get; set; }
  222. public string CustomerNo { get; set; }
  223. }
  224. }