/// <summary> /// 更新单挑数据(事务) /// </summary> /// <param name="entity"></param> /// <returns></returns> /// <summary> /// 伪删除单条数据 /// </summary> /// <param name="entity"></param> /// <returns></returns> public virtual JsonModel DeleteFalse(int id) { JsonModel jsonModel = null; try { bool result = CurrentDal.DeleteFalse(CurrentEntity, id); jsonModel = new JsonModel() { errNum = 0, errMsg = "success", retData = result }; return(jsonModel); } catch (Exception ex) { jsonModel = new JsonModel() { errNum = 400, errMsg = ex.Message, retData = "" }; return(jsonModel); } }