Pu Zhibing
6 天以前 4c99ee7028c3fe58a2cd4b8273b22c75c45574fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.stylefeng.guns.modular.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel
public class GrantVO {
    @ApiModelProperty(value = "使用时间")
    private String insertTime;
    @ApiModelProperty(value = "补贴类型")
    private String type;
    @ApiModelProperty(value = "金额")
    private String amount;
    @ApiModelProperty(value = "领取用户id")
    private String name;
    @ApiModelProperty(value = "备注")
    private String remark;
}