V2TradeOnlinepaymentTransferRemittanceorderRequest.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 汇付入账查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradeOnlinepaymentTransferRemittanceorderRequest : BaseRequest
  11. {
  12. /**
  13. * 商户号
  14. */
  15. private string huifuId;
  16. /**
  17. * 原请求开始日期
  18. */
  19. private string orgReqStartDate;
  20. /**
  21. * 原请求结束日期
  22. */
  23. private string orgReqEndDate;
  24. public override string getFunctionCode() {
  25. return FunctionCodeEnum.V2_TRADE_ONLINEPAYMENT_TRANSFER_REMITTANCEORDER;
  26. }
  27. public V2TradeOnlinepaymentTransferRemittanceorderRequest() {
  28. }
  29. public V2TradeOnlinepaymentTransferRemittanceorderRequest(string huifuId, string orgReqStartDate, string orgReqEndDate) {
  30. this.huifuId = huifuId;
  31. this.orgReqStartDate = orgReqStartDate;
  32. this.orgReqEndDate = orgReqEndDate;
  33. }
  34. public string getHuifuId() {
  35. return huifuId;
  36. }
  37. public void setHuifuId(string huifuId) {
  38. this.huifuId = huifuId;
  39. }
  40. public string getOrgReqStartDate() {
  41. return orgReqStartDate;
  42. }
  43. public void setOrgReqStartDate(string orgReqStartDate) {
  44. this.orgReqStartDate = orgReqStartDate;
  45. }
  46. public string getOrgReqEndDate() {
  47. return orgReqEndDate;
  48. }
  49. public void setOrgReqEndDate(string orgReqEndDate) {
  50. this.orgReqEndDate = orgReqEndDate;
  51. }
  52. }
  53. }