/// <summary> /// 脏住房清理干净 /// </summary> /// <param name="roomId"></param> /// <returns></returns> public JsonResult ZZFSetToClean(long roomId) { var apiResult = new APIResult(); try { RoomBll.ZZFSetToClean(roomId); } catch (Exception ex) { apiResult.Ret = -1; apiResult.Msg = ex.Message; if (!(ex is OperationExceptionFacade)) { LogFactory.GetLogger().Log(LogLevel.Error, ex); } } return(Json(apiResult)); }