liujie
2023-05-22 9f2315d92cc93f8f431805a10ea9ce3f79fa7eb2
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
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
/**
 * <p>
 * Fee setting
 * </p>
 *
 * @author stylefeng
 * @since 2023-01-11
 */
@TableName("t_user_fee_setting")
@Data
public class TUserFeeSetting extends Model<TUserFeeSetting> {
 
 
    private static final long serialVersionUID = 1L;
 
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @TableField("user_id")
    private Integer userId;
 
    private String name;
 
    private Integer fee;
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
}