/// <summary>
        /// 设置为脏住房
        /// </summary>
        /// <param name="roomId"></param>
        /// <returns></returns>
        public JsonResult SetToZZF(long roomId)
        {
            var apiResult = new APIResult();

            try
            {
                RoomBll.SetToZZF(roomId);
            }
            catch (Exception ex)
            {
                apiResult.Ret = -1;
                apiResult.Msg = ex.Message;
                if (!(ex is OperationExceptionFacade))
                {
                    LogFactory.GetLogger().Log(LogLevel.Error, ex);
                }
            }

            return(Json(apiResult));
        }