wxr
2021-07-01 adc150efb13a0506f45a3c344c3ee2ef2dba8e90
HDL_ON/UI/UI2/3-Intelligence/Automation/Logic.cs
@@ -5,7 +5,6 @@
    /// <summary>
    /// 逻辑存储数据对象
    /// </summary>
    [Serializable]
    public class Logic
    {
@@ -49,6 +48,7 @@
        /// 逻辑输出目标数组
        /// </summary>
        public List<Output> output = new List<Output>();
<<<<<<< HEAD
        /// <summary>
        /// 通知配置
        /// </summary>
@@ -58,12 +58,14 @@
        /// </summary>
        public List<PushConfigs> pushConfigs = new List<PushConfigs>();
=======
>>>>>>> origin/CJL-LC
    }
    /// <summary>
    /// 执行周期对象
    /// </summary>
    [Serializable]
    public class Cycle
    {
        /// <summary>
@@ -76,7 +78,6 @@
    /// <summary>
    /// 输入条件对象
    /// </summary>
    [Serializable]
    public class Input
    {
        /// <summary>
@@ -96,21 +97,20 @@
        /// </summary>
        public string condition_type = "";
        public List<Dictionary<string, string>> condition = new List<Dictionary<string, string>>();
        /// <summary>
        /// 地理围栏配置
        /// </summary>
        public Fence geo_fence = new Fence();
    }
    /// <summary>
    /// 输出目标对象
    /// </summary>
    [Serializable]
    public class Output
    {
        /// <summary>
        /// 逻辑输出目标唯一标识
        /// </summary>
        public string sid = "";
        /// <summary>
        /// 逻辑输出目标延时间(单位用秒)
        /// </summary>
        public string delay = "0";
        /// <summary>
        /// 逻辑输出目标类型
        /// 设备=1;
@@ -120,6 +120,7 @@
        public string target_type = "";
        public List<Dictionary<string, string>> status = new List<Dictionary<string, string>>();
    }
<<<<<<< HEAD
    /// <summary>
    /// 地理围栏配置
    /// </summary>
@@ -173,6 +174,9 @@
        /// </summary>
        public List<string> pushTarget = new List<string> {};
    }
=======
>>>>>>> origin/CJL-LC
}