zxl
2025-04-24 52064683bceec96082f6eb7ae50e2e6e0ffe60a0
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
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 lombok.Data;
 
import java.util.Date;
 
/**
 * 动态列
 *
 * @author xp
 * @since 2024-08-16
 */
@Data
@TableName("t_dynamic_column_value")
public class DynamicColumnValue {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @TableField("dynamic_column_id")
    /** 关联动态列ID */
    private Integer dynamicColumnId;
 
    @TableField("column_value")
    /** elementui table prop */
    private String columnValue;
 
    @TableField("ref_id")
    /** 关联的数据id */
    private Integer refId;
 
    @TableField("ref_string_id")
    private String refStringId;
 
 
}