无关风月
2025-04-16 c2d59caac4e8a874adf1488e4b1a6f417d168ceb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dsh.activity.entity;
 
 
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;
 
    private Long dateTime;
 
}