Commit ad9e7f32 authored by chenzhao's avatar chenzhao

修改代码

parent b2516cb1
...@@ -56,6 +56,10 @@ public class DesignInformationDto extends BaseDto { ...@@ -56,6 +56,10 @@ public class DesignInformationDto extends BaseDto {
@TableField(typeHandler = FastjsonTypeHandler.class) @TableField(typeHandler = FastjsonTypeHandler.class)
private List<Object> electricityMeter; private List<Object> electricityMeter;
@ApiModelProperty(value = "电缆")
@TableField(typeHandler = FastjsonTypeHandler.class)
private List<Object> cable;
@ApiModelProperty(value = "支架") @ApiModelProperty(value = "支架")
@TableField(typeHandler = FastjsonTypeHandler.class) @TableField(typeHandler = FastjsonTypeHandler.class)
private List<Object> support; private List<Object> support;
......
...@@ -72,6 +72,11 @@ public class DesignInformation extends BaseEntity { ...@@ -72,6 +72,11 @@ public class DesignInformation extends BaseEntity {
*/ */
@TableField(value = "electricity_meter",typeHandler = FastjsonTypeHandler.class,updateStrategy = FieldStrategy.IGNORED) @TableField(value = "electricity_meter",typeHandler = FastjsonTypeHandler.class,updateStrategy = FieldStrategy.IGNORED)
private List<Object> electricityMeter; private List<Object> electricityMeter;
/**
* 电缆
*/
@TableField(value = "cable",typeHandler = FastjsonTypeHandler.class,updateStrategy = FieldStrategy.IGNORED)
private List<Object> cable;
/** /**
* 支架 * 支架
......
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