xuhy
2023-04-07 7454b6532cd2a5c68235a45f1cc540e25f1ffaf4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.supersavedriving.driver.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @date 2023/3/15 14:58
 */
@Data
@ApiModel
public class IntegralIncomeAndExpensesWarpper {
    @ApiModelProperty("说明")
    private String description;
    @ApiModelProperty("时间")
    private Long createTime;
    @ApiModelProperty("积分")
    private Integer integral;
}