Commit 80012ddb authored by duanruiming's avatar duanruiming

[udpate] 辖区分组实体类增加经纬度字段

parent 1dfc8641
......@@ -486,7 +486,7 @@ public class SituationDetectionServiceImpl implements SituationDetectionService
}
signalAreaVO.setName(name);
signalAreaVO.setType("2");
signalAreaVO.setPolylines(location);
signalAreaVO.setPoint(location);
signalAreaVO.setParentCode(String.valueOf(parentCode));
signalAreaVO.setChlidren(null);
resultList.add(signalAreaVO);
......
......@@ -19,8 +19,10 @@ public class JurisdictionAreaTreeVO {
private String name;
@ApiModelProperty(value = "类型:1-辖区;2-信号机")
private String type;
@ApiModelProperty(value = "区域边界:辖区:区域边界; 信号机:经纬度")
@ApiModelProperty(value = "辖区:区域边界")
private String polylines;
@ApiModelProperty(value = "信号机:经纬度")
private String point;
@ApiModelProperty(value = "级别")
private Integer level;
@ApiModelProperty(value = "区域级别")
......
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