old mode 100644
new mode 100755
| | |
| | | package com.genersoft.iot.vmp.gb28181.bean; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | |
| | | /** |
| | | * 国标级联-目录 |
| | | * @author lin |
| | | */ |
| | | @Schema(description = "目录信息") |
| | | public class PlatformCatalog { |
| | | @Schema(description = "ID") |
| | | private String id; |
| | | |
| | | @Schema(description = "名称") |
| | | private String name; |
| | | |
| | | @Schema(description = "平台ID") |
| | | private String platformId; |
| | | |
| | | @Schema(description = "父级目录ID") |
| | | private String parentId; |
| | | private int childrenCount; // 子节点数 |
| | | private int type; // 0 目录, 1 国标通道, 2 直播流 |
| | | |
| | | @Schema(description = "行政区划") |
| | | private String civilCode; |
| | | |
| | | @Schema(description = "目录分组") |
| | | private String businessGroupId; |
| | | |
| | | /** |
| | | * 子节点数 |
| | | */ |
| | | @Schema(description = "子节点数") |
| | | private int childrenCount; |
| | | |
| | | /** |
| | | * 0 目录, 1 国标通道, 2 直播流 |
| | | */ |
| | | @Schema(description = "类型:0 目录, 1 国标通道, 2 直播流") |
| | | private int type; |
| | | |
| | | public String getId() { |
| | | return id; |
| | |
| | | this.type = 2; |
| | | } |
| | | |
| | | public String getCivilCode() { |
| | | return civilCode; |
| | | } |
| | | |
| | | public void setCivilCode(String civilCode) { |
| | | this.civilCode = civilCode; |
| | | } |
| | | |
| | | public String getBusinessGroupId() { |
| | | return businessGroupId; |
| | | } |
| | | |
| | | public void setBusinessGroupId(String businessGroupId) { |
| | | this.businessGroupId = businessGroupId; |
| | | } |
| | | } |