| | |
| | | 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; |
| | | |
| | | /** |
| | | * 动态列 |
| | |
| | | */ |
| | | @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 */ |
| | |
| | | /** elementui table label */ |
| | | private String labelValue; |
| | | |
| | | @TableField("field_value") |
| | | @TableField("create_time") |
| | | /** 值 */ |
| | | private String fieldValue; |
| | | private Date createTime; |
| | | |
| | | |
| | | } |