mitao
2024-03-15 92b586e7d47167421f6500be641734acebeacd79
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 基础数据配置表
 * </p>
 *
 * @author mitao
 * @since 2024-03-13
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("tb_basic_data_config")
@ApiModel(value="TbBasicDataConfig对象", description="基础数据配置表")
public class TbBasicDataConfig implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "基础数据配置id")
    @TableId("id")
    private Integer id;
 
    @ApiModelProperty(value = "基础数据分类id")
    @TableField("basic_data_category_id")
    private Integer basicDataCategoryId;
 
    @ApiModelProperty(value = "类型名称")
    @TableField("type_name")
    private String typeName;
 
    @ApiModelProperty(value = "字段说明")
    @TableField("field_description")
    private String fieldDescription;
 
    @ApiModelProperty(value = "计算类型(1=数字计算 2=文本统计 3=百分比统计)")
    @TableField("calculate_type")
    private Integer calculateType;
 
    @ApiModelProperty(value = "字段id")
    @TableField("field_id")
    private Integer fieldId;
 
    @ApiModelProperty(value = "计算公式")
    @TableField("calculate_formula")
    private String calculateFormula;
 
    @ApiModelProperty(value = "隐藏状态(0=展示中 1=已隐藏)")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "删除标志(0代表存在 1代表删除)")
    @TableField("del_flag")
    @TableLogic
    private String delFlag;
 
    @ApiModelProperty(value = "创建者")
    @TableField("create_by")
    private String createBy;
 
    @ApiModelProperty(value = "创建时间")
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @ApiModelProperty(value = "创建者")
    @TableField("update_by")
    private String updateBy;
 
    @ApiModelProperty(value = "创建时间")
    @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
 
}