using System.Data; using System.Data.Common; using System.Collections.Generic; using SuperMap.RealEstate.Configuration; using SuperMap.RealEstate.ServiceModel; using SuperMap.RealEstate.ServiceModel.Logging; using SuperMap.RealEstate.EShangPush.Model; using SuperMap.RealEstate.EShangPush.Interface; namespace SuperMap.RealEstate.EShangPush { /// /// 服务类 T_RTWECHATPUSHDTAIL 部分 /// partial class Service:IService { #region RTWECHATPUSHDTAIL_Insert 插入数据 /// /// 插入数据 /// /// RTWECHATPUSHDTAIL类 /// 日志信息 /// RTWECHATPUSHDTAIL类 public RTWECHATPUSHDTAIL RTWECHATPUSHDTAIL_Insert(RTWECHATPUSHDTAIL rTWECHATPUSHDTAIL, ServiceLoggingInfo loggingInfo) { using (SQLStringHelper _SQLStringHelper = new SQLStringHelper(typeof(TableSchema_RTWECHATPUSHDTAIL))) { System.Int32 _RTWECAHTPUSHDTAIL_ID=0; using (DbCommand _DbCommand = DataBaseHelper.CreateCommand( _SQLStringHelper.GetInsertSQL(rTWECHATPUSHDTAIL, DataBaseHelper.IsOracleClientFactory))) { Dictionary _Parameters = _SQLStringHelper.Parameters; if (DataBaseHelper.IsOracleClientFactory) { if (rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID == null) _RTWECAHTPUSHDTAIL_ID= DataBaseHelper.ExecuteScalar("select "+ TableSchema_RTWECHATPUSHDTAIL.SequenceName +".nextval from dual"); else _RTWECAHTPUSHDTAIL_ID = rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.Value; if (_Parameters.ContainsKey(TableSchema_RTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.ToLower())) _Parameters[TableSchema_RTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.ToLower()]=_RTWECAHTPUSHDTAIL_ID; else _Parameters.Add(TableSchema_RTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.ToLower(),_RTWECAHTPUSHDTAIL_ID); } DataBaseHelper.PrepareCommandParameters(_DbCommand, _Parameters); _DbCommand.ExecuteNonQuery(); if (DataBaseHelper.IsAccessClientFactory) { if (rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID == null) _RTWECAHTPUSHDTAIL_ID = DataBaseHelper.ExecuteScalar("select @@IDENTITY"); else _RTWECAHTPUSHDTAIL_ID = rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.Value; } if (DataBaseHelper.IsSqlClientFactory) { if (rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID == null) _RTWECAHTPUSHDTAIL_ID = DataBaseHelper.ExecuteScalar("select IDENT_CURRENT('"+ TableSchema_RTWECHATPUSHDTAIL.TableName +"');"); else _RTWECAHTPUSHDTAIL_ID = rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.Value; } if (_DbCommand.Transaction == null) _DbCommand.Connection.Close(); } rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID = _RTWECAHTPUSHDTAIL_ID; LoggingDataForInsert(rTWECHATPUSHDTAIL, loggingInfo); } return rTWECHATPUSHDTAIL; } #endregion #region RTWECHATPUSHDTAIL_Update 更新数据 /// /// 更新数据 /// /// RTWECHATPUSHDTAIL类 /// 日志信息 /// RTWECHATPUSHDTAIL类 public bool RTWECHATPUSHDTAIL_Update(RTWECHATPUSHDTAIL rTWECHATPUSHDTAIL, ServiceLoggingInfo loggingInfo) { using (SQLStringHelper _SQLStringHelper = new SQLStringHelper(typeof(TableSchema_RTWECHATPUSHDTAIL))) { string _SQLStr = _SQLStringHelper.GetUpDateSQL(rTWECHATPUSHDTAIL, DataBaseHelper.IsOracleClientFactory); if (string.IsNullOrEmpty(_SQLStr)) return true; if (!LoggingDataForUpdate(rTWECHATPUSHDTAIL, loggingInfo)) return true; if (ConfigurationSetting.HttpRuntimeCache_Enabled == true) ServiceCacheHelper.Remove(rTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.ToString()); Dictionary _Parameters = _SQLStringHelper.Parameters; return (DataBaseHelper.ExecuteNonQuery(_SQLStr, _Parameters) == 1); } } #endregion #region RTWECHATPUSHDTAIL_Delete 删除数据 /// /// 删除数据 /// /// 主键字段 /// 日志信息 public void RTWECHATPUSHDTAIL_Delete(System.Int32 rTWECAHTPUSHDTAIL_ID, ServiceLoggingInfo loggingInfo) { if (ConfigurationSetting.HttpRuntimeCache_Enabled == true) ServiceCacheHelper.Remove(rTWECAHTPUSHDTAIL_ID.ToString()); using (SQLStringHelper _SQLStringHelper = new SQLStringHelper(typeof(TableSchema_RTWECHATPUSHDTAIL))) { string _SQLStr = _SQLStringHelper.GetDeleteSQL(rTWECAHTPUSHDTAIL_ID,DataBaseHelper.IsOracleClientFactory); LoggingDataForDelete(rTWECAHTPUSHDTAIL_ID, loggingInfo); DataBaseHelper.ExecuteNonQuery(_SQLStr, _SQLStringHelper.Parameters); } } #endregion #region RTWECHATPUSHDTAIL_Search 查询数据 /// /// 查询数据 /// /// 参数集合 /// 日志信息 /// RTWECHATPUSHDTAIL类 public RTWECHATPUSHDTAIL RTWECHATPUSHDTAIL_Search(List parameters, ServiceLoggingInfo loggingInfo) { RTWECHATPUSHDTAIL _RTWECHATPUSHDTAIL = null; if (parameters.Count == 0) return _RTWECHATPUSHDTAIL; if ((ConfigurationSetting.HttpRuntimeCache_Enabled == true) && (parameters.Count == 1) && (parameters[0].Name.Equals(TableSchema_RTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID,System.StringComparison.CurrentCultureIgnoreCase)) && ServiceCacheHelper.Read(parameters[0].Value.ToString(),out _RTWECHATPUSHDTAIL)) { return _RTWECHATPUSHDTAIL; } using (SQLStringHelper _SQLStringHelper = new SQLStringHelper(typeof(TableSchema_RTWECHATPUSHDTAIL))) { string _SQLStr = _SQLStringHelper.GetSelectSQL(parameters, DataBaseHelper.IsOracleClientFactory); DataSet _DataSet = DataBaseHelper.ExecuteDataSet(_SQLStr, _SQLStringHelper.Parameters); if ((_DataSet.Tables.Count>0) && (_DataSet.Tables[0].Rows.Count > 0)) { _RTWECHATPUSHDTAIL = new RTWECHATPUSHDTAIL(); _SQLStringHelper.DataRowToObject(ref _RTWECHATPUSHDTAIL, _DataSet.Tables[0].Rows[0]); } } if ((ConfigurationSetting.HttpRuntimeCache_Enabled == true) && (_RTWECHATPUSHDTAIL != null)) { ServiceCacheHelper.Insert( _RTWECHATPUSHDTAIL.RTWECAHTPUSHDTAIL_ID.ToString(),_RTWECHATPUSHDTAIL); } return _RTWECHATPUSHDTAIL; } #endregion } }