wvp-GB28181-pro/src/main/java/com/genersoft/iot/vmp/common/CommonGbChannel.java

192 lines
3.9 KiB
Java
Raw Normal View History

2023-07-24 09:04:47 +08:00
package com.genersoft.iot.vmp.common;
import io.swagger.v3.oas.annotations.media.Schema;
public class CommonGbChannel {
/**
*
*/
@Schema(description = "归属")
private String owner;
/**
*
*/
@Schema(description = "行政区划")
private String civilCode;
/**
*
*/
@Schema(description = "安装地址")
private String address;
/**
*
*/
@Schema(description = "经度")
private Double longitude;
/**
*
*/
@Schema(description = "纬度")
private Double latitude;
/**
* :
* 1-;
* 2-;
* 3-;
* 4-
*/
@Schema(description = "摄像机类型")
private Integer ptzType;
/**
*
* 1-
* 2-
* 3-
* 4-广
* 5-
* 6-
* 7-
* 8-
* 9-
* 10-线
*/
@Schema(description = "摄像机位置类型扩展")
private Integer positionType;
/**
*
* 1-
* 2-
*/
@Schema(description = "安装位置室外、室内属性")
private Integer roomType;
/**
*
* 1-
* 2-
* 3-
*/
@Schema(description = "用途")
private Integer useType;
/**
*
* 1-
* 2-
* 3-
*/
@Schema(description = "补光属性")
private Integer supplyLightType;
/**
*
* 1-
* 2-西
* 3-
* 4-
* 5-
* 6-
* 7-西
* 8-西
*
*/
@Schema(description = "方位")
private Integer directionType;
public String getOwner() {
return owner;
}
public void setOwner(String owner) {
this.owner = owner;
}
public String getCivilCode() {
return civilCode;
}
public void setCivilCode(String civilCode) {
this.civilCode = civilCode;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public Double getLongitude() {
return longitude;
}
public void setLongitude(Double longitude) {
this.longitude = longitude;
}
public Double getLatitude() {
return latitude;
}
public void setLatitude(Double latitude) {
this.latitude = latitude;
}
public Integer getPtzType() {
return ptzType;
}
public void setPtzType(Integer ptzType) {
this.ptzType = ptzType;
}
public Integer getPositionType() {
return positionType;
}
public void setPositionType(Integer positionType) {
this.positionType = positionType;
}
public Integer getRoomType() {
return roomType;
}
public void setRoomType(Integer roomType) {
this.roomType = roomType;
}
public Integer getUseType() {
return useType;
}
public void setUseType(Integer useType) {
this.useType = useType;
}
public Integer getSupplyLightType() {
return supplyLightType;
}
public void setSupplyLightType(Integer supplyLightType) {
this.supplyLightType = supplyLightType;
}
public Integer getDirectionType() {
return directionType;
}
public void setDirectionType(Integer directionType) {
this.directionType = directionType;
}
}