package com.gear.finance.domain;
|
|
import java.math.BigDecimal;
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 用户等级对象 finance_user_level
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Data
|
@TableName("finance_user_level")
|
public class FinanceUserLevel extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 等级名称 */
|
@Excel(name = "等级名称")
|
private String name;
|
|
/** 会员级别 */
|
@Excel(name = "会员级别")
|
private Integer level;
|
|
/** 达成条件 */
|
@Excel(name = "达成条件")
|
private BigDecimal condition;
|
|
/** 可抽奖次数 */
|
@Excel(name = "可抽奖次数")
|
private Integer lotteryCount;
|
|
/** 收益叠加利率 */
|
@Excel(name = "收益叠加利率")
|
private BigDecimal addRate;
|
|
/** 余额宝收益利率 */
|
@Excel(name = "余额宝收益利率")
|
private BigDecimal yebRate;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
|
private String updateByu;
|
|
}
|