V2TradeElectronReceiptsPictureUploadRequest.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. namespace BasePaySdk.Request
  3. {
  4. /**
  5. * 图片上传
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. public class V2TradeElectronReceiptsPictureUploadRequest : 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 thirdChannelType;
  28. /**
  29. * 文件名称
  30. */
  31. private string fileName;
  32. /**
  33. * 图片内容
  34. */
  35. private string imageContent;
  36. public override string getFunctionCode() {
  37. return FunctionCodeEnum.V2_TRADE_ELECTRON_RECEIPTS_PICTURE_UPLOAD;
  38. }
  39. public V2TradeElectronReceiptsPictureUploadRequest() {
  40. }
  41. public V2TradeElectronReceiptsPictureUploadRequest(string reqSeqId, string reqDate, string huifuId, string thirdChannelType, string fileName, string imageContent) {
  42. this.reqSeqId = reqSeqId;
  43. this.reqDate = reqDate;
  44. this.huifuId = huifuId;
  45. this.thirdChannelType = thirdChannelType;
  46. this.fileName = fileName;
  47. this.imageContent = imageContent;
  48. }
  49. public string getReqSeqId() {
  50. return reqSeqId;
  51. }
  52. public void setReqSeqId(string reqSeqId) {
  53. this.reqSeqId = reqSeqId;
  54. }
  55. public string getReqDate() {
  56. return reqDate;
  57. }
  58. public void setReqDate(string reqDate) {
  59. this.reqDate = reqDate;
  60. }
  61. public string getHuifuId() {
  62. return huifuId;
  63. }
  64. public void setHuifuId(string huifuId) {
  65. this.huifuId = huifuId;
  66. }
  67. public string getThirdChannelType() {
  68. return thirdChannelType;
  69. }
  70. public void setThirdChannelType(string thirdChannelType) {
  71. this.thirdChannelType = thirdChannelType;
  72. }
  73. public string getFileName() {
  74. return fileName;
  75. }
  76. public void setFileName(string fileName) {
  77. this.fileName = fileName;
  78. }
  79. public string getImageContent() {
  80. return imageContent;
  81. }
  82. public void setImageContent(string imageContent) {
  83. this.imageContent = imageContent;
  84. }
  85. }
  86. }