|
@@ -20,11 +20,11 @@ public class OrderPayResultVO {
|
|
/**
|
|
/**
|
|
* 是否成功 0未支付 100 支付中等待结果 101 :支付失败 200 成功
|
|
* 是否成功 0未支付 100 支付中等待结果 101 :支付失败 200 成功
|
|
*/
|
|
*/
|
|
|
|
+ @ApiModelProperty("支付结果")
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
private Integer payResult = 0;
|
|
private Integer payResult = 0;
|
|
|
|
|
|
- /**
|
|
|
|
- *
|
|
|
|
- */
|
|
|
|
|
|
+ @ApiModelProperty("支付返回")
|
|
private String payMsg = "支付成功";
|
|
private String payMsg = "支付成功";
|
|
|
|
|
|
@ApiModelProperty("订单id")
|
|
@ApiModelProperty("订单id")
|
|
@@ -37,6 +37,7 @@ public class OrderPayResultVO {
|
|
@ApiModelProperty("是否全部支付完")
|
|
@ApiModelProperty("是否全部支付完")
|
|
private Boolean isAllPayEnd;
|
|
private Boolean isAllPayEnd;
|
|
|
|
|
|
|
|
+
|
|
@ApiModelProperty("app支付返回对象")
|
|
@ApiModelProperty("app支付返回对象")
|
|
private AppPayRespVO appPayRespVO;
|
|
private AppPayRespVO appPayRespVO;
|
|
|
|
|