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";
|
}
|