|  |  | 
 |  |  |    @Schema(description = "地理坐标系, 目前支持 WGS84,GCJ02") | 
 |  |  |    private String geoCoordSys; | 
 |  |  |  | 
 |  |  |    /** | 
 |  |  |     * 树类型 国标规定了两种树的展现方式 行政区划:CivilCode 和业务分组:BusinessGroup | 
 |  |  |     */ | 
 |  |  |    @Schema(description = "树类型 国标规定了两种树的展现方式 行政区划:CivilCode 和业务分组:BusinessGroup") | 
 |  |  |    private String treeType; | 
 |  |  |  | 
 |  |  |    @Schema(description = "密码") | 
 |  |  |    private String password; | 
 |  |  |  | 
 |  |  | 
 |  |  |    } | 
 |  |  |  | 
 |  |  |    public Integer getStreamModeForParam() { | 
 |  |  |       if (streamMode == null) { | 
 |  |  |          return 0; | 
 |  |  |       } | 
 |  |  |       if (streamMode.equalsIgnoreCase("UDP")) { | 
 |  |  |          return 0; | 
 |  |  |       }else if (streamMode.equalsIgnoreCase("TCP-PASSIVE")) { | 
 |  |  | 
 |  |  |  | 
 |  |  |    public void setGeoCoordSys(String geoCoordSys) { | 
 |  |  |       this.geoCoordSys = geoCoordSys; | 
 |  |  |    } | 
 |  |  |  | 
 |  |  |    public String getTreeType() { | 
 |  |  |       return treeType; | 
 |  |  |    } | 
 |  |  |  | 
 |  |  |    public void setTreeType(String treeType) { | 
 |  |  |       this.treeType = treeType; | 
 |  |  |    } | 
 |  |  |  | 
 |  |  |    public String getPassword() { |