Commit 681fc3f1 authored by tangwei's avatar tangwei

增加典型设计图

parent 47adbc91
package com.yeejoin.amos.boot.module.hygf.api.dto;
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
import io.swagger.annotations.ApiModel;
......@@ -27,6 +28,13 @@ public class DesignInformationDto extends BaseDto {
@ApiModelProperty(value = "典型设计图信息")
@TableField(typeHandler = FastjsonTypeHandler.class)
private List<Object> typicalDiagram;
/**
* 典型设计图信息
*/
@ApiModelProperty(value = "典型设计图信息")
@TableField(typeHandler = FastjsonTypeHandler.class)
private List<Object> engineering;
@ApiModelProperty(value = "组件排布图")
@TableField(typeHandler = FastjsonTypeHandler.class)
......
......@@ -32,6 +32,13 @@ public class DesignInformation extends BaseEntity {
private List<Object> typicalDiagram;
/**
* 典型设计图信息
*/
@TableField(value = "engineering",typeHandler = FastjsonTypeHandler.class,updateStrategy = FieldStrategy.IGNORED)
private List<Object> engineering;
/**
* 组件排布图
*/
@TableField(value = "component_layout",typeHandler = FastjsonTypeHandler.class,updateStrategy = FieldStrategy.IGNORED)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment