V2BillEntCreateRequest.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 创建企业账单
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2BillEntCreateRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求时间
  18. */
  19. private string reqDate;
  20. /**
  21. * 商户号
  22. */
  23. private string huifuId;
  24. /**
  25. * 付款人
  26. */
  27. private string payerId;
  28. /**
  29. * 账单名称
  30. */
  31. private string billName;
  32. /**
  33. * 账单金额
  34. */
  35. private string billAmt;
  36. /**
  37. * 可支持的付款方式
  38. */
  39. private string supportPayType;
  40. /**
  41. * 账单截止日期
  42. */
  43. private string billEndDate;
  44. /**
  45. * 收款人信息
  46. */
  47. private string payeeInfo;
  48. public override string getFunctionCode() {
  49. return FunctionCodeEnum.V2_BILL_ENT_CREATE;
  50. }
  51. public V2BillEntCreateRequest() {
  52. }
  53. public V2BillEntCreateRequest(string reqSeqId, string reqDate, string huifuId, string payerId, string billName, string billAmt, string supportPayType, string billEndDate, string payeeInfo) {
  54. this.reqSeqId = reqSeqId;
  55. this.reqDate = reqDate;
  56. this.huifuId = huifuId;
  57. this.payerId = payerId;
  58. this.billName = billName;
  59. this.billAmt = billAmt;
  60. this.supportPayType = supportPayType;
  61. this.billEndDate = billEndDate;
  62. this.payeeInfo = payeeInfo;
  63. }
  64. public string getReqSeqId() {
  65. return reqSeqId;
  66. }
  67. public void setReqSeqId(string reqSeqId) {
  68. this.reqSeqId = reqSeqId;
  69. }
  70. public string getReqDate() {
  71. return reqDate;
  72. }
  73. public void setReqDate(string reqDate) {
  74. this.reqDate = reqDate;
  75. }
  76. public string getHuifuId() {
  77. return huifuId;
  78. }
  79. public void setHuifuId(string huifuId) {
  80. this.huifuId = huifuId;
  81. }
  82. public string getPayerId() {
  83. return payerId;
  84. }
  85. public void setPayerId(string payerId) {
  86. this.payerId = payerId;
  87. }
  88. public string getBillName() {
  89. return billName;
  90. }
  91. public void setBillName(string billName) {
  92. this.billName = billName;
  93. }
  94. public string getBillAmt() {
  95. return billAmt;
  96. }
  97. public void setBillAmt(string billAmt) {
  98. this.billAmt = billAmt;
  99. }
  100. public string getSupportPayType() {
  101. return supportPayType;
  102. }
  103. public void setSupportPayType(string supportPayType) {
  104. this.supportPayType = supportPayType;
  105. }
  106. public string getBillEndDate() {
  107. return billEndDate;
  108. }
  109. public void setBillEndDate(string billEndDate) {
  110. this.billEndDate = billEndDate;
  111. }
  112. public string getPayeeInfo() {
  113. return payeeInfo;
  114. }
  115. public void setPayeeInfo(string payeeInfo) {
  116. this.payeeInfo = payeeInfo;
  117. }
  118. }
  119. }