V2UserBasicdataEntRequest.php 5.4 KB

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