mac
2024-07-25 3f6685c77beeb12baf840733fb890860f4c26e7c
HDL_ON/Entity/ResponseEntity/RegionInfoRes.cs
@@ -56,6 +56,10 @@
        /// </summary>
        public string id { get; set; }
        /// <summary>
        /// 项目id
        /// </summary>
        public string communityId = string.Empty;
        /// <summary>
        /// 住宅名称
        /// </summary>
        public string homeName { get; set; }
@@ -88,8 +92,25 @@
        public double latitude;
        /// <summary>
        /// 交付状态
        /// To_Be_Debugged(0, "待调试"),
        /// Debugging(1, "调试中"),
        /// To_Be_Accepted(2, "待验收"),
        /// Completed(3, "调试完成"),
        /// WAIT_DELIVERED(3, "调试完成"),
        /// Delivered(4, "已交付"),
        /// INITIAL_TATE(5,"初始态"),
        /// ACCEPTANCE(6,"验收"),
        /// SECONDARY_DEBUGGIN(7,"二次调试"),
        /// </summary>
        public string deliverStatus;
        public string deliverStatus
        {
            get
            {
                return debugStatus;
            }
        }
        public string debugStatus;
        /// <summary>
        /// 住宅类型 Zigbee, Buspro, A
        /// </summary>
@@ -131,10 +152,6 @@
        /// 交付链接
        /// </summary>
        public string deliverUrl;
        /// <summary>
        /// 是否支持群控
        /// </summary>
        public bool isSupportGroupControl = false;
    }
}