package com.hdl.sdk.link.bean; import java.io.Serializable; import java.util.ArrayList; import java.util.List; /** * Created by Zoro * Created on 2022/1/23 * description: */ public class LinkCreateSceneBean implements Serializable { private String delay; private String name; private String sid; private String can_delete; private String gatewayId; private String image; private List imageBeans = new ArrayList<>(); private List uids = new ArrayList<>(); private List functions = new ArrayList<>(); public String getGatewayId() { return gatewayId == null ? "" : gatewayId; } public void setGatewayId( String gatewayId) { this.gatewayId = gatewayId; } public String getImage() { return image == null ? "" : image; } public void setImage( String image) { this.image = image; } public List getImageBeans() { if (imageBeans == null) { return imageBeans = new ArrayList<>(); } return imageBeans; } public void setImageBeans( List imageBeans) { this.imageBeans = imageBeans; } public String getGateWayId() { return gatewayId == null ? "" : gatewayId; } public void setGateWayId( String gateWayId) { this.gatewayId = gateWayId; } public String getCan_delete() { return can_delete == null ? "" : can_delete; } public void setCan_delete( String can_delete) { this.can_delete = can_delete; } public String getDelay() { return delay == null ? "" : delay; } public void setDelay( String delay) { this.delay = delay; } public String getName() { return name == null ? "" : name; } public void setName( String name) { this.name = name; } public String getSid() { return sid == null ? "" : sid; } public void setSid( String sid) { this.sid = sid; } public List getUids() { if (uids == null) { return new ArrayList<>(); } return uids; } public void setUids( List uids) { this.uids = uids; } public List getFunctions() { if (functions == null) { return new ArrayList<>(); } return functions; } public void setFunctions( List functions) { this.functions = functions; } }