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