PayinfoVO.java 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package com.ydtech.modules.nai.httpvo;
  2. import com.alibaba.fastjson.JSONObject;
  3. /**
  4. * @ClassName PayinfoVO
  5. * @Description: TODO
  6. * @Author
  7. * @Date 2021/6/3
  8. **/
  9. public class PayinfoVO {
  10. private String orderno;
  11. private JSONObject reqtxt;
  12. private JSONObject reptxt;
  13. private String policyNo;
  14. public String getOrderno() {
  15. return orderno;
  16. }
  17. public void setOrderno(String orderno) {
  18. this.orderno = orderno;
  19. }
  20. public JSONObject getReqtxt() {
  21. return reqtxt;
  22. }
  23. public void setReqtxt(JSONObject reqtxt) {
  24. this.reqtxt = reqtxt;
  25. }
  26. public JSONObject getReptxt() {
  27. return reptxt;
  28. }
  29. public void setReptxt(JSONObject reptxt) {
  30. this.reptxt = reptxt;
  31. }
  32. public String getPolicyNo() {
  33. return policyNo;
  34. }
  35. public void setPolicyNo(String policyNo) {
  36. this.policyNo = policyNo;
  37. }
  38. }