|  |  | 
 |  |  |      * 地理围栏   8 不做 | 
 |  |  |      */ | 
 |  |  |     private String condition_type; | 
 |  |  |     /** | 
 |  |  |      * 没有该字段、该值或0: 状态检测(每次收到状态就成立) | 
 |  |  |      * 1:动作检测(需要切换状态才成立) | 
 |  |  |      */ | 
 |  |  |     private String detect_type; | 
 |  |  |     private String identifier; | 
 |  |  |     //true:临时bypass中、false:启用中  是否过滤 | 
 |  |  |     private String bypass; | 
 |  |  |     private List<LinkCreateLogicInputConditionBean> condition = new ArrayList<>(); | 
 |  |  | 
 |  |  |     private LinkCreateSceneFunctionControlAttrsBean controlAttrs; | 
 |  |  |     private List<LinkCreateSceneFunctionattributesBean> attributes = new ArrayList<>(); | 
 |  |  |  | 
 |  |  |     public String getIdentifier() { | 
 |  |  |         return identifier == null ? "" : identifier; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public void setIdentifier(@NonNull String identifier) { | 
 |  |  |         this.identifier = identifier; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getDetect_type() { | 
 |  |  |         return detect_type == null ? "" : detect_type; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public void setDetect_type(@NonNull String detect_type) { | 
 |  |  |         this.detect_type = detect_type; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getBypass() { | 
 |  |  |         return bypass == null ? "" : bypass; | 
 |  |  |     } |