From f75496139d661ee4c0550e4e10a86b899371637a Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期五, 29 八月 2025 09:18:52 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0 --- cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/vo/VipPaymentListVO.java | 30 ++++++++++++++++++++++++++++-- 1 files changed, 28 insertions(+), 2 deletions(-) diff --git a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/vo/VipPaymentListVO.java b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/vo/VipPaymentListVO.java index e0033d7..b089a96 100644 --- a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/vo/VipPaymentListVO.java +++ b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/vo/VipPaymentListVO.java @@ -1,5 +1,6 @@ package com.dsh.guns.modular.system.model.vo; +import com.baomidou.mybatisplus.annotation.TableField; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -31,15 +32,40 @@ @ApiModelProperty(value = "金额¥") private String amountValue; @ApiModelProperty(value = "金额") - private BigDecimal amount; + private Double amount; @ApiModelProperty(value = "下单时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date insertTime; @ApiModelProperty(value = "是否退款 0否1时") private Integer isRefund; @ApiModelProperty(value = "备注") - private Integer remark; + private String remark; + /** + * 支付方式(1=微信,2=支付宝) + */ + @TableField("payType") + private Integer payType; + /** + * 支付状态(1=待支付,2=已支付 3=已退款) + */ + @TableField("payStatus") + private Integer payStatus; + /** + * 支付时间 + */ + @TableField("payTime") + private Date payTime; + /** + * 第三方流水号 + */ + @TableField("orderNumber") + private String orderNumber; + /** + * 状态(1=正常,2=冻结,3=删除) + */ + @TableField("state") + private Integer state; } -- Gitblit v1.7.1