/// <summary>
        /// 添加记录操作
        /// </summary>
        protected void AddRecord()
        {
            HttpContext context = HttpContext.Current;
            HttpRequest request = context.Request;
            HttpResponse response = context.Response;

            ConsultationPatientRecord consultationPatientRecord= new ConsultationPatientRecord();
            string addTime=request.Params["textAddTime"];

            consultationPatientRecord.AddTime=DateTime.Now;
            consultationPatientRecord.ConsultationId=Guid.NewGuid().ToString("N");
            consultationPatientRecord.RecordId=Guid.NewGuid().ToString("N");

            ResultModel result = ConsultationPatientRecordBll.Insert(consultationPatientRecord);
            string jsonString = JsonConvert.SerializeObject(result);
            response.Write(result);
        }
 /// <summary>
 /// 修改ConsultationPatientRecord表中的某条记录
 /// </summary>
 /// <param name="user">要修改记录对应的实体</param>
 public static void Update(ConsultationPatientRecord consultationPatientRecord)
 {
     DataAccessUtility.Update<ConsultationPatientRecord>(consultationPatientRecord);
 }
 /// <summary>
 /// 插入一条新记录
 /// </summary>
 /// <param name="consultationPatientRecord">ConsultationPatientRecord实体</param>
 /// <returns>插入记录的主键</returns>
 public static object Insert(ConsultationPatientRecord consultationPatientRecord)
 {
     Object id = DataAccessUtility.Insert<ConsultationPatientRecord>(consultationPatientRecord);
     return id;
 }
        /// <summary>
        /// 修改某条记录
        /// </summary>
        /// <param name="user">要修改记录对应的实体</param>
        /// <param name="isLog">是否写入日志</param>
        /// <returns>修改结果,包括是否修改成功、记录主键等信息</returns>
        public static ResultModel Update(ConsultationPatientRecord consultationPatientRecord, bool isLog)
        {
            if (isLog)
                return Update(consultationPatientRecord);

            ResultModel result = new ResultModel();

            try
            {
                ConsultationPatientRecordDal.Update(consultationPatientRecord);

                result.IsSuccess = true;
                result.ObjectRecordId = consultationPatientRecord.ConsultationId;
                result.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_SUCCESS;
                result.ResultMessage = SymbolicConstant.RESULTMESSAGE_UPDATE_SUCCESS;

                return result;
            }
            catch (Exception exception)
            {
                result.IsSuccess = false;
                result.ObjectRecordId =consultationPatientRecord.ConsultationId;
                result.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_ERROR;
                result.ResultMessage = exception.Message;

                return result;
            }
        }
        /// <summary>
        /// 修改某条记录
        /// </summary>
        /// <param name="user">要修改记录对应的实体</param>
        /// <returns>修改结果,包括是否修改成功、记录主键等信息</returns>
        public static ResultModel Update(ConsultationPatientRecord consultationPatientRecord)
        {
            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(ConsultationPatientRecord).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 = consultationPatientRecord.ConsultationId;
                ConsultationPatientRecordDal.Update(consultationPatientRecord);

                result.IsSuccess = true;
                result.ObjectRecordId = consultationPatientRecord.ConsultationId;
                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 =consultationPatientRecord.ConsultationId;
                result.ResultCode = SymbolicConstant.RESULTCODE_UPDATE_ERROR;
                result.ResultMessage = exception.Message;

                return result;
            }
            finally
            {
                OperationLogBll.Insert(log);
            }
        }
        /// <summary>
        /// 添加一条新记录
        /// </summary>
        /// <param name="consultationPatientRecord">ConsultationPatientRecord实体</param>
        /// <param name="isLog">是否写入日志</param>
        /// <returns>添加结果,包括是否插入成功、记录主键等信息</returns>
        public static ResultModel Insert(ConsultationPatientRecord consultationPatientRecord, bool isLog)
        {
            if (isLog)
                return Insert(consultationPatientRecord);
            ResultModel result = new ResultModel();
            object id = "";
            try
            {
                id = ConsultationPatientRecordDal.Insert(consultationPatientRecord);

                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="consultationPatientRecordId">主键</param>
        /// <param name="isLog">是否写入日志</param>
        /// <returns>查询结果,封装了查询出的实体</returns>
        public static ResultModel GetConsultationPatientRecordById(string consultationPatientRecordId, bool isLog)
        {
            if (isLog)
                return GetConsultationPatientRecordById(consultationPatientRecordId);
            ConsultationPatientRecord consultationPatientRecord = new ConsultationPatientRecord();
            ResultModel result = new ResultModel();

            try
            {
                consultationPatientRecord= ConsultationPatientRecordDal.GetModel(consultationPatientRecordId);
                result.Data =  consultationPatientRecord;
                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;
            }
        }