lss
2020-05-20 a6c8525a85eae4c64b90b651d42b6c1f6d0df90f
ZigbeeApp/Shared/Phone/UserCenter/SmartSound/Forms/SmartSoundListForm.cs
@@ -56,10 +56,14 @@
            helpBtn.MouseUpEventHandler += (sernder, e) =>
            {
                //这里是加载帮组的界面
            };
            };
            string room_id = Common.Config.Instance.Home.Id;//住宅 ID
            string gu_id = Common.Config.Instance.Guid;
            Console.WriteLine("room_id =" + room_id);
            Console.WriteLine("gu_id =" + gu_id);
        }
        /// <summary>
@@ -261,37 +265,5 @@
        #endregion
        /// <summary>
        /// 智能音箱类,小度、小爱、天猫精灵通用此类
        /// </summary>
        public class SmartSound
        {
            /// <summary>
            /// 小度
            /// </summary>
            public const int SMARTSOUND_XIAODU = 0;
            /// <summary>
            /// 小爱
            /// </summary>
            public const int SMARTSOUND_XIAOAI = 1;
            /// <summary>
            /// 天猫精灵
            /// </summary>
            public const int SMARTSOUND_TIANMAO = 2;
            /// <summary>
            /// 智能音箱的用户名(小度:123456@qq.com)
            /// </summary>
            public string UserName;
            /// <summary>
            /// 音箱备注
            /// </summary>
            public string Remark = "我的音箱";
            /// <summary>
            /// 音箱类型,暂定0为小度,1为小爱,2为天猫精灵
            /// </summary>
            public int Type;
        }
    }
}