/// <summary> /// 添加记录操作 /// </summary> protected void AddRecord() { HttpContext context = HttpContext.Current; HttpRequest request = context.Request; HttpResponse response = context.Response; Dictionary dictionary = new Dictionary(); string code = request.Params["textCode"]; string id = request.Params["textId"]; string description = request.Params["textareaDescription"]; string name = request.Params["textName"]; string dictTypeId = request.Params["textDictTypeId"]; dictionary.AddTime = DateTime.Now; if (!String.IsNullOrEmpty(code)) dictionary.Code = code; if (!String.IsNullOrEmpty(description)) dictionary.Description = description; if (!String.IsNullOrEmpty(id)) dictionary.DictId = id; else dictionary.DictId = Guid.NewGuid().ToString("N"); if (!String.IsNullOrEmpty(name)) dictionary.Name = name; if (!String.IsNullOrEmpty(dictTypeId)) dictionary.DictTypeId = dictTypeId; dictionary.UpdateTime = DateTime.Now; ResultModel result = DictionaryBll.Insert(dictionary); string jsonString = JsonConvert.SerializeObject(result); response.Write(result); }
/// <summary> /// 修改Dictionary表中的某条记录 /// </summary> /// <param name="user">要修改记录对应的实体</param> public static void Update(Dictionary dictionary) { DataAccessUtility.Update<Dictionary>(dictionary); }
/// <summary> /// 插入一条新记录 /// </summary> /// <param name="dictionary">Dictionary实体</param> /// <returns>插入记录的主键</returns> public static object Insert(Dictionary dictionary) { Object id = DataAccessUtility.Insert<Dictionary>(dictionary); return id; }
/// <summary> /// 删除Dictionary表中的某条记录 /// </summary> /// <param name="user">要删除记录的对应的实体</param> public static void Delete(Dictionary dictionary) { DataAccessUtility.Delete<Dictionary>(dictionary); }
/// <summary> /// 修改某条记录 /// </summary> /// <param name="user">要修改记录对应的实体</param> /// <param name="isLog">是否写入日志</param> /// <returns>修改结果,包括是否修改成功、记录主键等信息</returns> public static ResultModel Update(Dictionary dictionary, bool isLog) { if (isLog) return Update(dictionary); ResultModel result = new ResultModel(); try { DictionaryDal.Update(dictionary); result.IsSuccess = true; result.ObjectRecordId = dictionary.DictId; result.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_SUCCESS; result.ResultMessage = SymbolicConstant.RESULTMESSAGE_UPDATE_SUCCESS; return result; } catch (Exception exception) { result.IsSuccess = false; result.ObjectRecordId =dictionary.DictId; result.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_ERROR; result.ResultMessage = exception.Message; return result; } }
/// <summary> /// 修改某条记录 /// </summary> /// <param name="user">要修改记录对应的实体</param> /// <returns>修改结果,包括是否修改成功、记录主键等信息</returns> public static ResultModel Update(Dictionary dictionary) { OperationLog log = new OperationLog(); ResultModel result = new ResultModel(); try { log.AddTime = DateTime.Now; log.IsSuccessId = SymbolicConstant.ISSUCCESS_TRUE; log.OperationLogId = System.Guid.NewGuid().ToString("N"); log.OperationContent = SymbolicConstant.OPERATIONCONTENT_UPDATE; log.OperationTable = typeof(Dictionary).Name; log.OperationTypeCode = SymbolicConstant.OPERATIONTYPE_UPDATE; log.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_SUCCESS; log.ResultMessage=SymbolicConstant.RESULTMESSAGE_UPDATE_SUCCESS; log.UserId = CurrentSession.getUser().UserId; log.ObjectRecordId = dictionary.DictId; DictionaryDal.Update(dictionary); result.IsSuccess = true; result.ObjectRecordId = dictionary.DictId; result.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_SUCCESS; result.ResultMessage = SymbolicConstant.RESULTMESSAGE_UPDATE_SUCCESS; return result; } catch (Exception exception) { log.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_ERROR; log.IsSuccessId = SymbolicConstant.ISSUCCESS_FALSE; log.ResultMessage=exception.Message; result.IsSuccess = false; result.ObjectRecordId =dictionary.DictId; result.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_ERROR; result.ResultMessage = exception.Message; return result; } finally { OperationLogBll.Insert(log); } }
/// <summary> /// 添加一条新记录 /// </summary> /// <param name="dictionary">Dictionary实体</param> /// <param name="isLog">是否写入日志</param> /// <returns>添加结果,包括是否插入成功、记录主键等信息</returns> public static ResultModel Insert(Dictionary dictionary, bool isLog) { if (isLog) return Insert(dictionary); ResultModel result = new ResultModel(); object id = ""; try { id = DictionaryDal.Insert(dictionary); result.IsSuccess = true; result.ObjectRecordId = id.ToString(); result.ResultCode = SymbolicConstant.RESULTCODE_INSERT_SUCCESS; result.ResultMessage = SymbolicConstant.RESULTMESSAGE_INSERT_SUCCESS; return result; } catch (Exception exception) { result.IsSuccess = false; result.ObjectRecordId = id.ToString(); result.ResultCode = SymbolicConstant.RESULTCODE_INSERT_ERROR; result.ResultMessage = exception.Message; return result; } }
/// <summary> /// 根据主键查询指定记录 /// </summary> /// <param name="dictionaryId">主键</param> /// <param name="isLog">是否写入日志</param> /// <returns>查询结果,封装了查询出的实体</returns> public static ResultModel GetDictionaryById(string dictionaryId, bool isLog) { if (isLog) return GetDictionaryById(dictionaryId); Dictionary dictionary = new Dictionary(); ResultModel result = new ResultModel(); try { dictionary= DictionaryDal.GetModel(dictionaryId); result.Data = dictionary; result.IsSuccess = true; result.ResultCode = SymbolicConstant.RESULTCODE_GETMODEL_SUCCESS; result.ResultMessage=SymbolicConstant.RESULTMESSAGE_GETMODEL_SUCCESS; return result; } catch (Exception exception) { result.IsSuccess = false; result.ResultCode = SymbolicConstant.RESULTCODE_GETMODEL_ERROR; result.ResultMessage = exception.Message; return result; } }