xiangpei
2024-08-16 e3f95b136c8600b689bd2c569a12a41f2d4ce74e
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
package com.ycl.platform.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
import com.ycl.platform.base.AbsEntity;
import lombok.Data;
 
/**
 * 动态列
 *
 * @author xp
 * @since 2024-08-16
 */
@Data
@TableName("t_dynamic_column")
public class DynamicColumn extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("ref_id")
    /** 关联一机一档id */
    private Integer refId;
 
    @TableField("prop_name")
    /** elementui table prop */
    private String propName;
 
    @TableField("label_value")
    /** elementui table label */
    private String labelValue;
 
    @TableField("field_value")
    /** 值 */
    private String fieldValue;
 
 
}