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;
|
|
|
}
|