V2UserBasicdataEntRequest.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 企业用户基本信息开户
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2UserBasicdataEntRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private string reqDate;
  20. /**
  21. * 企业用户名称
  22. */
  23. private string regName;
  24. /**
  25. * 营业执照编号
  26. */
  27. private string licenseCode;
  28. /**
  29. * 证照有效期类型
  30. */
  31. private string licenseValidityType;
  32. /**
  33. * 证照有效期起始日期
  34. */
  35. private string licenseBeginDate;
  36. /**
  37. * 证照有效期结束日期日期格式:yyyyMMdd; 非长期有效时必填;<font color="green">示例值:20320905</font>
  38. */
  39. private string licenseEndDate;
  40. /**
  41. * 注册地址(省)
  42. */
  43. private string regProvId;
  44. /**
  45. * 注册地址(市)
  46. */
  47. private string regAreaId;
  48. /**
  49. * 注册地址(区)
  50. */
  51. private string regDistrictId;
  52. /**
  53. * 注册地址(详细信息)
  54. */
  55. private string regDetail;
  56. /**
  57. * 法人姓名
  58. */
  59. private string legalName;
  60. /**
  61. * 法人证件类型
  62. */
  63. private string legalCertType;
  64. /**
  65. * 法人证件号码
  66. */
  67. private string legalCertNo;
  68. /**
  69. * 法人证件有效期类型
  70. */
  71. private string legalCertValidityType;
  72. /**
  73. * 法人证件有效期开始日期
  74. */
  75. private string legalCertBeginDate;
  76. /**
  77. * 法人证件有效期截止日期日期格式:yyyyMMdd; 非长期有效时必填,长期有效为空;<font color="green">示例值:20320905</font>
  78. */
  79. private string legalCertEndDate;
  80. /**
  81. * 联系人姓名
  82. */
  83. private string contactName;
  84. /**
  85. * 联系人手机号
  86. */
  87. private string contactMobile;
  88. /**
  89. * 管理员账号如需短信通知则必填;<font color="green">示例值:Lg20220222013747</font>
  90. */
  91. private string loginName;
  92. public override string getFunctionCode() {
  93. return FunctionCodeEnum.V2_USER_BASICDATA_ENT;
  94. }
  95. public V2UserBasicdataEntRequest() {
  96. }
  97. public V2UserBasicdataEntRequest(string reqSeqId, string reqDate, string regName, string licenseCode, string licenseValidityType, string licenseBeginDate, string licenseEndDate, string regProvId, string regAreaId, string regDistrictId, string regDetail, string legalName, string legalCertType, string legalCertNo, string legalCertValidityType, string legalCertBeginDate, string legalCertEndDate, string contactName, string contactMobile, string loginName) {
  98. this.reqSeqId = reqSeqId;
  99. this.reqDate = reqDate;
  100. this.regName = regName;
  101. this.licenseCode = licenseCode;
  102. this.licenseValidityType = licenseValidityType;
  103. this.licenseBeginDate = licenseBeginDate;
  104. this.licenseEndDate = licenseEndDate;
  105. this.regProvId = regProvId;
  106. this.regAreaId = regAreaId;
  107. this.regDistrictId = regDistrictId;
  108. this.regDetail = regDetail;
  109. this.legalName = legalName;
  110. this.legalCertType = legalCertType;
  111. this.legalCertNo = legalCertNo;
  112. this.legalCertValidityType = legalCertValidityType;
  113. this.legalCertBeginDate = legalCertBeginDate;
  114. this.legalCertEndDate = legalCertEndDate;
  115. this.contactName = contactName;
  116. this.contactMobile = contactMobile;
  117. this.loginName = loginName;
  118. }
  119. public string getReqSeqId() {
  120. return reqSeqId;
  121. }
  122. public void setReqSeqId(string reqSeqId) {
  123. this.reqSeqId = reqSeqId;
  124. }
  125. public string getReqDate() {
  126. return reqDate;
  127. }
  128. public void setReqDate(string reqDate) {
  129. this.reqDate = reqDate;
  130. }
  131. public string getRegName() {
  132. return regName;
  133. }
  134. public void setRegName(string regName) {
  135. this.regName = regName;
  136. }
  137. public string getLicenseCode() {
  138. return licenseCode;
  139. }
  140. public void setLicenseCode(string licenseCode) {
  141. this.licenseCode = licenseCode;
  142. }
  143. public string getLicenseValidityType() {
  144. return licenseValidityType;
  145. }
  146. public void setLicenseValidityType(string licenseValidityType) {
  147. this.licenseValidityType = licenseValidityType;
  148. }
  149. public string getLicenseBeginDate() {
  150. return licenseBeginDate;
  151. }
  152. public void setLicenseBeginDate(string licenseBeginDate) {
  153. this.licenseBeginDate = licenseBeginDate;
  154. }
  155. public string getLicenseEndDate() {
  156. return licenseEndDate;
  157. }
  158. public void setLicenseEndDate(string licenseEndDate) {
  159. this.licenseEndDate = licenseEndDate;
  160. }
  161. public string getRegProvId() {
  162. return regProvId;
  163. }
  164. public void setRegProvId(string regProvId) {
  165. this.regProvId = regProvId;
  166. }
  167. public string getRegAreaId() {
  168. return regAreaId;
  169. }
  170. public void setRegAreaId(string regAreaId) {
  171. this.regAreaId = regAreaId;
  172. }
  173. public string getRegDistrictId() {
  174. return regDistrictId;
  175. }
  176. public void setRegDistrictId(string regDistrictId) {
  177. this.regDistrictId = regDistrictId;
  178. }
  179. public string getRegDetail() {
  180. return regDetail;
  181. }
  182. public void setRegDetail(string regDetail) {
  183. this.regDetail = regDetail;
  184. }
  185. public string getLegalName() {
  186. return legalName;
  187. }
  188. public void setLegalName(string legalName) {
  189. this.legalName = legalName;
  190. }
  191. public string getLegalCertType() {
  192. return legalCertType;
  193. }
  194. public void setLegalCertType(string legalCertType) {
  195. this.legalCertType = legalCertType;
  196. }
  197. public string getLegalCertNo() {
  198. return legalCertNo;
  199. }
  200. public void setLegalCertNo(string legalCertNo) {
  201. this.legalCertNo = legalCertNo;
  202. }
  203. public string getLegalCertValidityType() {
  204. return legalCertValidityType;
  205. }
  206. public void setLegalCertValidityType(string legalCertValidityType) {
  207. this.legalCertValidityType = legalCertValidityType;
  208. }
  209. public string getLegalCertBeginDate() {
  210. return legalCertBeginDate;
  211. }
  212. public void setLegalCertBeginDate(string legalCertBeginDate) {
  213. this.legalCertBeginDate = legalCertBeginDate;
  214. }
  215. public string getLegalCertEndDate() {
  216. return legalCertEndDate;
  217. }
  218. public void setLegalCertEndDate(string legalCertEndDate) {
  219. this.legalCertEndDate = legalCertEndDate;
  220. }
  221. public string getContactName() {
  222. return contactName;
  223. }
  224. public void setContactName(string contactName) {
  225. this.contactName = contactName;
  226. }
  227. public string getContactMobile() {
  228. return contactMobile;
  229. }
  230. public void setContactMobile(string contactMobile) {
  231. this.contactMobile = contactMobile;
  232. }
  233. public string getLoginName() {
  234. return loginName;
  235. }
  236. public void setLoginName(string loginName) {
  237. this.loginName = loginName;
  238. }
  239. }
  240. }