wxr
2024-12-02 ea0b1e8e5f43c5fd0a7d479e25ede3b8cbea464a
HDL_ON/Entity/ResponseEntity/RegionInfoRes.cs
@@ -54,11 +54,15 @@
        /// <summary>
        /// 住宅ID
        /// </summary>
        public string id = string.Empty;
        public string id { get; set; }
        /// <summary>
        /// 项目id
        /// </summary>
        public string communityId = string.Empty;
        /// <summary>
        /// 住宅名称
        /// </summary>
        public string homeName = string.Empty;
        public string homeName { get; set; }
        /// <summary>
        /// 住宅地址
        /// </summary>
@@ -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>
@@ -126,6 +147,11 @@
        /// 网关本地通信加密Key,同一个住宅 密钥创建后就不变
        /// </summary>
        public string localSecret;
        /// <summary>
        /// 交付链接
        /// </summary>
        public string deliverUrl;
    }
}