123
This commit is contained in:
@@ -8,11 +8,13 @@ public class PayReturnResp {
|
|||||||
private String data;
|
private String data;
|
||||||
@Schema(description = "H5,APP")
|
@Schema(description = "H5,APP")
|
||||||
private String appType;
|
private String appType;
|
||||||
|
private String payType;
|
||||||
|
|
||||||
public static PayReturnResp createH5(String data){
|
public static PayReturnResp createH5(String data){
|
||||||
PayReturnResp resp = new PayReturnResp();
|
PayReturnResp resp = new PayReturnResp();
|
||||||
resp.setData(data);
|
resp.setData(data);
|
||||||
resp.setAppType("H5");
|
resp.setAppType("H5");
|
||||||
|
resp.setPayType("H5");
|
||||||
return resp;
|
return resp;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -20,6 +22,7 @@ public class PayReturnResp {
|
|||||||
PayReturnResp resp = new PayReturnResp();
|
PayReturnResp resp = new PayReturnResp();
|
||||||
resp.setData(data);
|
resp.setData(data);
|
||||||
resp.setAppType("APP");
|
resp.setAppType("APP");
|
||||||
|
resp.setPayType("APP");
|
||||||
return resp;
|
return resp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user