fuliqi
2024-09-05 cd24a045bd9ee29505ddc9760d25f5d4037f4f0c
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DynamicColumn.java
@@ -1,10 +1,14 @@
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;
/**
 * 动态列
@@ -14,13 +18,16 @@
 */
@Data
@TableName("t_dynamic_column")
public class DynamicColumn extends AbsEntity {
public class DynamicColumn {
    private static final long serialVersionUID = 1L;
    @TableField("ref_id")
    /** 关联一机一档id */
    private Integer refId;
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @TableField("table_name")
    /** 关联表 */
    private String tableName;
    @TableField("prop_name")
    /** elementui table prop */
@@ -30,9 +37,9 @@
    /** elementui table label */
    private String labelValue;
    @TableField("field_value")
    @TableField("create_time")
    /** 值 */
    private String fieldValue;
    private Date createTime;
}