nickchange
2023-10-11 95ec3536dfd071443a5704dc28eb30fd19b4ae98
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 ConsumeDetail {
 
    @ApiModelProperty(value = "名称")
    private String consumeName;
 
    @ApiModelProperty(value = "时间")
    private String consumeTime;
 
    @ApiModelProperty(value = "金额 例如 -90 ")
    private String consumeAmount;
 
    @ApiModelProperty(value = "1充值 2扣除")
    private Integer type;
 
}