hxb
2024-02-22 d451118d4be05f180cfe1f99bc5904f74db8cc3f
HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/bean/LinkCreateLogicInputBean.java
@@ -24,6 +24,12 @@
     * 地理围栏   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<>();
@@ -41,6 +47,22 @@
    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;
    }