V2TradeBatchtranslogQueryRequest.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 批量出金交易查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradeBatchtranslogQueryRequest : BaseRequest
  11. {
  12. /**
  13. * 商户号
  14. */
  15. private string huifuId;
  16. /**
  17. * 开始日期
  18. */
  19. private string beginDate;
  20. /**
  21. * 结束日期
  22. */
  23. private string endDate;
  24. public override string getFunctionCode() {
  25. return FunctionCodeEnum.V2_TRADE_BATCHTRANSLOG_QUERY;
  26. }
  27. public V2TradeBatchtranslogQueryRequest() {
  28. }
  29. public V2TradeBatchtranslogQueryRequest(string huifuId, string beginDate, string endDate) {
  30. this.huifuId = huifuId;
  31. this.beginDate = beginDate;
  32. this.endDate = endDate;
  33. }
  34. public string getHuifuId() {
  35. return huifuId;
  36. }
  37. public void setHuifuId(string huifuId) {
  38. this.huifuId = huifuId;
  39. }
  40. public string getBeginDate() {
  41. return beginDate;
  42. }
  43. public void setBeginDate(string beginDate) {
  44. this.beginDate = beginDate;
  45. }
  46. public string getEndDate() {
  47. return endDate;
  48. }
  49. public void setEndDate(string endDate) {
  50. this.endDate = endDate;
  51. }
  52. }
  53. }