nidapeng
2024-04-23 2569c0199ef86a727316770e7c5a7e222bef9daa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.doumee.dao.system.dto;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author T14
 */
@Data
@ApiModel("用户充值参数模型")
public class MemberRechargeDTO {
 
    @ApiModelProperty(value = "用户id")
    private Integer memberId;
 
    @ApiModelProperty(value = "手机号")
    @ExcelColumn(name="手机号",width = 18)
    private String phone;
 
    @ApiModelProperty(value = "真实姓名")
    @ExcelColumn(name="姓名",width = 18)
    private String name;
 
    @ApiModelProperty(value = "调整类型(0增加 1减少)")
    @ExcelColumn(name="调整类型(0增加 1减少)",width = 18)
    private Integer  integralType;
 
    @ApiModelProperty(value = "金额")
    @ExcelColumn(name="金额",width = 18)
    private String num = "0";
}