V2TradeTransSplitQueryRequest.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 V2TradeTransSplitQueryRequest : BaseRequest
  11. {
  12. /**
  13. * 分账交易汇付全局流水号
  14. */
  15. private string hfSeqId;
  16. /**
  17. * 商户号
  18. */
  19. private string huifuId;
  20. /**
  21. * 交易类型
  22. */
  23. private string ordType;
  24. public override string getFunctionCode() {
  25. return FunctionCodeEnum.V2_TRADE_TRANS_SPLIT_QUERY;
  26. }
  27. public V2TradeTransSplitQueryRequest() {
  28. }
  29. public V2TradeTransSplitQueryRequest(string hfSeqId, string huifuId, string ordType) {
  30. this.hfSeqId = hfSeqId;
  31. this.huifuId = huifuId;
  32. this.ordType = ordType;
  33. }
  34. public string getHfSeqId() {
  35. return hfSeqId;
  36. }
  37. public void setHfSeqId(string hfSeqId) {
  38. this.hfSeqId = hfSeqId;
  39. }
  40. public string getHuifuId() {
  41. return huifuId;
  42. }
  43. public void setHuifuId(string huifuId) {
  44. this.huifuId = huifuId;
  45. }
  46. public string getOrdType() {
  47. return ordType;
  48. }
  49. public void setOrdType(string ordType) {
  50. this.ordType = ordType;
  51. }
  52. }
  53. }