Pu Zhibing
2024-12-17 d53c16a12e612a95dc8f6fb248e3669cbc441eb4
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/vo/WalletChangeVO.java
New file
@@ -0,0 +1,24 @@
package com.ruoyi.other.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
@ApiModel(value="变更明细", description="")
public class WalletChangeVO {
    @ApiModelProperty(value = "变更类型:1-充值 2-提现 3-红包 4-分佣 5商城购物")
    private Integer type;
    @ApiModelProperty(value = "变更时间")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date changeTime;
    @ApiModelProperty(value = "分佣消费金额")
    private BigDecimal price;
}