wxr
2020-04-14 06696e6f225733a60b03eea4a7c6374053d92c1d
HDL_ON/Entity/Room.cs
@@ -19,6 +19,10 @@
        /// 房间ID
        /// </summary>
        public string sid;
        /// <summary>
        /// 楼层索引
        /// </summary>
        public int floorIndex = -1;
        /// <summary>
        /// 房间背景
@@ -39,16 +43,13 @@
                return str;
            }
        }
        /// <summary>
        /// 楼层索引
        /// </summary>
        public int floorIndex = -1;
        /// <summary>
        /// 房间功能列表
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public List<Function> functionData = new List<Function>();
        public List<Function> functions = new List<Function>();
        public void RefreshFunctions()
        {
@@ -60,7 +61,7 @@
                    funcList.Add(f);
                }
            }
            functionData = funcList;
            functions = funcList;
        }
    }
}