| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package com.ydtech.modules.nai.httpvo;
- import com.alibaba.fastjson.JSONObject;
- /**
- * @ClassName PayinfoVO
- * @Description: TODO
- * @Author
- * @Date 2021/6/3
- **/
- public class PayinfoVO {
- private String orderno;
- private JSONObject reqtxt;
- private JSONObject reptxt;
- private String policyNo;
- public String getOrderno() {
- return orderno;
- }
- public void setOrderno(String orderno) {
- this.orderno = orderno;
- }
- public JSONObject getReqtxt() {
- return reqtxt;
- }
- public void setReqtxt(JSONObject reqtxt) {
- this.reqtxt = reqtxt;
- }
- public JSONObject getReptxt() {
- return reptxt;
- }
- public void setReptxt(JSONObject reptxt) {
- this.reptxt = reptxt;
- }
- public String getPolicyNo() {
- return policyNo;
- }
- public void setPolicyNo(String policyNo) {
- this.policyNo = policyNo;
- }
- }
|