V2BillEntPayerDeleteRequest.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 删除付款人
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2BillEntPayerDeleteRequest : 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. public override string getFunctionCode() {
  29. return FunctionCodeEnum.V2_BILL_ENT_PAYER_DELETE;
  30. }
  31. public V2BillEntPayerDeleteRequest() {
  32. }
  33. public V2BillEntPayerDeleteRequest(string reqSeqId, string reqDate, string huifuId, string payerId) {
  34. this.reqSeqId = reqSeqId;
  35. this.reqDate = reqDate;
  36. this.huifuId = huifuId;
  37. this.payerId = payerId;
  38. }
  39. public string getReqSeqId() {
  40. return reqSeqId;
  41. }
  42. public void setReqSeqId(string reqSeqId) {
  43. this.reqSeqId = reqSeqId;
  44. }
  45. public string getReqDate() {
  46. return reqDate;
  47. }
  48. public void setReqDate(string reqDate) {
  49. this.reqDate = reqDate;
  50. }
  51. public string getHuifuId() {
  52. return huifuId;
  53. }
  54. public void setHuifuId(string huifuId) {
  55. this.huifuId = huifuId;
  56. }
  57. public string getPayerId() {
  58. return payerId;
  59. }
  60. public void setPayerId(string payerId) {
  61. this.payerId = payerId;
  62. }
  63. }
  64. }