liujie
2023-07-26 54150b0fc65601f14a042d55a11fb5f5ce917e3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dsh.account.model.vo.userBenefitDetail;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
 
 
@Data
public class RechargesDetail {
 
 
    @ApiModelProperty(value = "名称")
    private String consumeName;
 
    @ApiModelProperty(value = "时间")
    private String consumeTime;
 
    @ApiModelProperty(value = "金额 例如 -90 ")
    private String consumeAmount;
 
}