| | |
| | | private String sid; |
| | | private String group; |
| | | private String can_delete; |
| | | private String can_edit; |
| | | private String gatewayId; |
| | | private String image; |
| | | private String from; //来源,方便网关识别 |
| | | private String local; |
| | | private List<LinkCreateSceneImageToCloudBean> imageBeans = new ArrayList<>(); |
| | | private List<String> uids = new ArrayList<>(); |
| | | private List<LinkCreateSceneFunctionBean> functions = new ArrayList<>(); |
| | | |
| | | public String getCan_edit() { |
| | | return can_edit == null ? "" : can_edit; |
| | | } |
| | | |
| | | public void setCan_edit(@NonNull String can_edit) { |
| | | this.can_edit = can_edit; |
| | | } |
| | | |
| | | public String getLocal() { |
| | | return local == null ? "" : local; |
| | | } |
| | | |
| | | public void setLocal(@NonNull String local) { |
| | | this.local = local; |
| | | } |
| | | |
| | | public String getFrom() { |
| | | return from == null ? "" : from; |
| | | } |
| | | |
| | | public void setFrom(@NonNull String from) { |
| | | this.from = from; |
| | | } |
| | | |
| | | public String getGatewayId() { |
| | | return gatewayId == null ? "" : gatewayId; |
| | | } |