xiangpei
2024-08-29 3e9a6da99aae968123ee7bca352fc08becd7f1f2
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
package com.ycl.platform.domain.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import com.ycl.platform.base.AbsEntity;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 动态列
 *
 * @author xp
 * @since 2024-08-16
 */
@Data
@TableName("t_dynamic_column")
public class DynamicColumn {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @TableField("table_name")
    /** 关联表 */
    private String tableName;
 
    @TableField("prop_name")
    /** elementui table prop */
    private String propName;
 
    @TableField("label_value")
    /** elementui table label */
    private String labelValue;
 
    @TableField("create_time")
    /** 值 */
    private Date createTime;
 
 
}