ycl-pojo/src/main/java/com/ycl/platform/domain/vo/DynamicColumnVO.java
@@ -14,18 +14,28 @@
 */
@Data
public class DynamicColumnVO extends AbsVo {
    /** 关联一机一档id */
    /** 表名 */
    private String tableName;
    /** elementui table prop */
    private String propName;
    /** elementui table label */
    /** elementui 字段名 */
    private String labelValue;
    /** 值 */
    /** 字段值 */
    private String columnValue;
    /** 关联数据的id */
    private Integer refId;
    /** 关联数据的id String类型*/
    private String refStringId;
    /** value表的id */
    private Integer valueId;
    /** 字段的id*/
    private Integer labelId;
    public static DynamicColumnVO getVoByEntity(@NonNull DynamicColumn entity, DynamicColumnVO vo) {
        if(vo == null) {