#20230510 欣影管理平台装置信息查询代码

master
18616268358 2 years ago
parent 68cf2a5b52
commit e6704a0ef8

@ -82,6 +82,10 @@ public class TerminalListModel implements Serializable {
@ApiModelProperty(value = "经度", example = "213")
private Double longitude;
@ApiModelProperty(value = "绘制ID", example = "213")
private Integer markId;
@ApiModelProperty(value = "参考图片宽", example = "213")
private Integer width;
@ -89,7 +93,7 @@ public class TerminalListModel implements Serializable {
private Integer height;
@ApiModelProperty(value = "线条颜色", example = "213")
private Integer color;
private String color;
@ApiModelProperty(value = "线条宽度", example = "213")
private Short boderWidth;
@ -106,6 +110,8 @@ public class TerminalListModel implements Serializable {
public static class ChannelBeans {
@ApiModelProperty(value = "通道编号", example = "213")
private Integer id;
@ApiModelProperty(value = "照片编号", example = "213")
private Integer photoId;
@ApiModelProperty(value = "通道名称", example = "213")
private String name;
@ApiModelProperty(value = "图片地址", example = "213")
@ -115,12 +121,12 @@ public class TerminalListModel implements Serializable {
@Data
public static class CoordinateBeans {
@ApiModelProperty(value = "线段起始坐标x", example = "213")
private Integer x1;
private float x1;
@ApiModelProperty(value = "线段结束坐标x", example = "213")
private Integer x2;
private float x2;
@ApiModelProperty(value = "线段起始坐标y", example = "213")
private Integer y1;
private float y1;
@ApiModelProperty(value = "线段结束坐标y", example = "213")
private Integer y2;
private float y2;
}
}

Loading…
Cancel
Save