zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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;
 
}