V2InvoiceQueryapplyRequest.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 发票开具申请查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2InvoiceQueryapplyRequest : BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 请求时间
  18. */
  19. private string reqDate;
  20. /**
  21. * 渠道号汇付商户号为空时,必传;<font color="green">示例值:6666000109812124</font>
  22. */
  23. private string channelId;
  24. /**
  25. * 流水号
  26. */
  27. private string seqId;
  28. public override string getFunctionCode() {
  29. return FunctionCodeEnum.V2_INVOICE_QUERYAPPLY;
  30. }
  31. public V2InvoiceQueryapplyRequest() {
  32. }
  33. public V2InvoiceQueryapplyRequest(string reqSeqId, string reqDate, string channelId, string seqId) {
  34. this.reqSeqId = reqSeqId;
  35. this.reqDate = reqDate;
  36. this.channelId = channelId;
  37. this.seqId = seqId;
  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 getChannelId() {
  52. return channelId;
  53. }
  54. public void setChannelId(string channelId) {
  55. this.channelId = channelId;
  56. }
  57. public string getSeqId() {
  58. return seqId;
  59. }
  60. public void setSeqId(string seqId) {
  61. this.seqId = seqId;
  62. }
  63. }
  64. }