lisy
2023-07-25 0198873ec1142258a4c9f8b204c1d4ab4da6748f
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;
 
}