This commit is contained in:
鲨鱼
2024-12-09 21:51:17 +08:00
parent 48744d87e6
commit 554d86a3b1

View File

@@ -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;
} }
} }