V2InvoiceMerRegRequest.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 商户注册
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2InvoiceMerRegRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求时间
  18. */
  19. private string reqDate;
  20. /**
  21. * 开票方汇付ID
  22. */
  23. private string huifuId;
  24. /**
  25. * 纳税人识别号
  26. */
  27. private string taxPayerId;
  28. /**
  29. * 销方名称
  30. */
  31. private string taxPayerName;
  32. /**
  33. * 公司电话
  34. */
  35. private string telNo;
  36. /**
  37. * 公司地址
  38. */
  39. private string regAddress;
  40. /**
  41. * 开户银行
  42. */
  43. private string bankName;
  44. /**
  45. * 开户账户
  46. */
  47. private string accountNo;
  48. /**
  49. * 联系人手机号
  50. */
  51. private string contactPhoneNo;
  52. /**
  53. * 开票方式
  54. */
  55. private string openMode;
  56. /**
  57. * 所属省
  58. */
  59. private string provId;
  60. /**
  61. * 所属市
  62. */
  63. private string cityId;
  64. public override string getFunctionCode() {
  65. return FunctionCodeEnum.V2_INVOICE_MER_REG;
  66. }
  67. public V2InvoiceMerRegRequest() {
  68. }
  69. public V2InvoiceMerRegRequest(string reqSeqId, string reqDate, string huifuId, string taxPayerId, string taxPayerName, string telNo, string regAddress, string bankName, string accountNo, string contactPhoneNo, string openMode, string provId, string cityId) {
  70. this.reqSeqId = reqSeqId;
  71. this.reqDate = reqDate;
  72. this.huifuId = huifuId;
  73. this.taxPayerId = taxPayerId;
  74. this.taxPayerName = taxPayerName;
  75. this.telNo = telNo;
  76. this.regAddress = regAddress;
  77. this.bankName = bankName;
  78. this.accountNo = accountNo;
  79. this.contactPhoneNo = contactPhoneNo;
  80. this.openMode = openMode;
  81. this.provId = provId;
  82. this.cityId = cityId;
  83. }
  84. public string getReqSeqId() {
  85. return reqSeqId;
  86. }
  87. public void setReqSeqId(string reqSeqId) {
  88. this.reqSeqId = reqSeqId;
  89. }
  90. public string getReqDate() {
  91. return reqDate;
  92. }
  93. public void setReqDate(string reqDate) {
  94. this.reqDate = reqDate;
  95. }
  96. public string getHuifuId() {
  97. return huifuId;
  98. }
  99. public void setHuifuId(string huifuId) {
  100. this.huifuId = huifuId;
  101. }
  102. public string getTaxPayerId() {
  103. return taxPayerId;
  104. }
  105. public void setTaxPayerId(string taxPayerId) {
  106. this.taxPayerId = taxPayerId;
  107. }
  108. public string getTaxPayerName() {
  109. return taxPayerName;
  110. }
  111. public void setTaxPayerName(string taxPayerName) {
  112. this.taxPayerName = taxPayerName;
  113. }
  114. public string getTelNo() {
  115. return telNo;
  116. }
  117. public void setTelNo(string telNo) {
  118. this.telNo = telNo;
  119. }
  120. public string getRegAddress() {
  121. return regAddress;
  122. }
  123. public void setRegAddress(string regAddress) {
  124. this.regAddress = regAddress;
  125. }
  126. public string getBankName() {
  127. return bankName;
  128. }
  129. public void setBankName(string bankName) {
  130. this.bankName = bankName;
  131. }
  132. public string getAccountNo() {
  133. return accountNo;
  134. }
  135. public void setAccountNo(string accountNo) {
  136. this.accountNo = accountNo;
  137. }
  138. public string getContactPhoneNo() {
  139. return contactPhoneNo;
  140. }
  141. public void setContactPhoneNo(string contactPhoneNo) {
  142. this.contactPhoneNo = contactPhoneNo;
  143. }
  144. public string getOpenMode() {
  145. return openMode;
  146. }
  147. public void setOpenMode(string openMode) {
  148. this.openMode = openMode;
  149. }
  150. public string getProvId() {
  151. return provId;
  152. }
  153. public void setProvId(string provId) {
  154. this.provId = provId;
  155. }
  156. public string getCityId() {
  157. return cityId;
  158. }
  159. public void setCityId(string cityId) {
  160. this.cityId = cityId;
  161. }
  162. }
  163. }