V2SupplementaryPictureRequest.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 V2SupplementaryPictureRequest : BaseRequest
  11. {
  12. /**
  13. * 业务请求流水号
  14. */
  15. private string reqSeqId;
  16. /**
  17. * 业务请求日期
  18. */
  19. private string reqDate;
  20. /**
  21. * 图片类型
  22. */
  23. private string fileType;
  24. public override string getFunctionCode() {
  25. return FunctionCodeEnum.V2_SUPPLEMENTARY_PICTURE;
  26. }
  27. public V2SupplementaryPictureRequest() {
  28. }
  29. public V2SupplementaryPictureRequest(string reqSeqId, string reqDate, string fileType) {
  30. this.reqSeqId = reqSeqId;
  31. this.reqDate = reqDate;
  32. this.fileType = fileType;
  33. }
  34. public string getReqSeqId() {
  35. return reqSeqId;
  36. }
  37. public void setReqSeqId(string reqSeqId) {
  38. this.reqSeqId = reqSeqId;
  39. }
  40. public string getReqDate() {
  41. return reqDate;
  42. }
  43. public void setReqDate(string reqDate) {
  44. this.reqDate = reqDate;
  45. }
  46. public string getFileType() {
  47. return fileType;
  48. }
  49. public void setFileType(string fileType) {
  50. this.fileType = fileType;
  51. }
  52. }
  53. }