Пример #1
0
        /// <summary>
        /// 更新数据
        /// </summary>
        /// <param name='model'>实体</param>
        /// <returns>bool</returns>
        public bool Update(Assets_Apply model)
        {
            bool result  = false;
            var  e       = new ModelExceptions();
            int  _rseult = instance.Update(model);

            if (_rseult > 0)
            {
                result = true;
            }
            return(result);
        }
Пример #2
0
        /// <summary>
        /// 获取实体数据
        /// </summary>
        /// <param name='strCondition'>条件(AND Code='11')</param>
        /// <returns>model</returns>
        public Assets_Apply GetModel(string strCondition)
        {
            List <Assets_Apply> list  = instance.GetListByWhere(strCondition);
            Assets_Apply        model = new Assets_Apply();

            if (list != null && list.Count > 0)
            {
                model = list[0];
            }
            else
            {
                model = null;
            }
            return(model);
        }
Пример #3
0
        /// <summary>
        /// 插入数据
        /// </summary>
        /// <param name='model'>实体</param>
        /// <param name='model'>是否完成验证</param>
        /// <returns>bool</returns>
        public bool Insert(Assets_Apply model, bool IsValid)
        {
            var  e      = new ModelExceptions();
            bool result = false;

            if (e.IsValid && IsValid)
            {
                //完成了验证,开始更新数据库了
                int _result = instance.Add(model);
                if (_result > 0)
                {
                    result = true;
                }
            }
            return(result);
        }
Пример #4
0
        /// <summary>
        /// 逻辑删除数据
        /// </summary>
        /// <param name='model'>model</param>
        /// <returns>bool</returns>
        public bool Delete(string Condition)
        {
            bool result = false;
            List <Assets_Apply> list = instance.GetListByWhere(Condition);

            if (list.Count > 0)
            {
                Assets_Apply model = list[0];
                model.Stat = 1;
                int _rseult = instance.Update(model);
                if (_rseult > 0)
                {
                    result = true;
                }
            }
            return(result);
        }
Пример #5
0
        /// <summary>
        /// 插入数据
        /// </summary>
        /// <param name='model'>实体</param>
        /// <returns>bool</returns>
        public bool Insert(Assets_Apply model)
        {
            bool result = false;

            try
            {
                int _result = instance.Add(model);
                if (_result > 0)
                {
                    result = true;
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(result);
        }
Пример #6
0
        /// <summary>
        /// 获取所有的Assets_Apply对象(即:一条记录
        /// </summary>
        public List <Assets_Apply> GetAll()
        {
            List <Assets_Apply> ret = new List <Assets_Apply>();
            string        sql       = "SELECT  AssetsApply_ID,AssetsApply_Code,AssetsApply_AppPerson,AssetsApply_AppDept,AssetsApply_AppName,AssetsApply_Parameter,AssetsApply_Description,AssetsApply_AppCount,AssetsApply_Type,AssetsApply_AppType,AssetsApply_Date,AssetsApply_AudistStat,AssetsApply_Stat,AssetsApply_Remark,Stat FROM Assets_Apply where 1=1 AND ((Stat is null) or (Stat=0) ) order by AssetsApply_ID desc ";
            SqlDataReader dr        = null;

            try {
                dr = (SqlDataReader)idb.ReturnReader(sql);
                while (dr.Read())
                {
                    Assets_Apply assets_Apply = new Assets_Apply();
                    if (dr["AssetsApply_ID"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_ID = Convert.ToDecimal(dr["AssetsApply_ID"]);
                    }
                    if (dr["AssetsApply_Code"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_Code = Convert.ToString(dr["AssetsApply_Code"]);
                    }
                    if (dr["AssetsApply_AppPerson"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_AppPerson = Convert.ToString(dr["AssetsApply_AppPerson"]);
                    }
                    if (dr["AssetsApply_AppDept"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_AppDept = Convert.ToString(dr["AssetsApply_AppDept"]);
                    }
                    if (dr["AssetsApply_AppName"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_AppName = Convert.ToString(dr["AssetsApply_AppName"]);
                    }
                    if (dr["AssetsApply_Parameter"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_Parameter = Convert.ToString(dr["AssetsApply_Parameter"]);
                    }
                    if (dr["AssetsApply_Description"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_Description = Convert.ToString(dr["AssetsApply_Description"]);
                    }
                    if (dr["AssetsApply_AppCount"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_AppCount = Convert.ToInt32(dr["AssetsApply_AppCount"]);
                    }
                    if (dr["AssetsApply_Type"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_Type = Convert.ToString(dr["AssetsApply_Type"]);
                    }
                    if (dr["AssetsApply_AppType"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_AppType = Convert.ToString(dr["AssetsApply_AppType"]);
                    }
                    if (dr["AssetsApply_Date"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_Date = Convert.ToDateTime(dr["AssetsApply_Date"]);
                    }
                    if (dr["AssetsApply_AudistStat"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_AudistStat = Convert.ToString(dr["AssetsApply_AudistStat"]);
                    }
                    if (dr["AssetsApply_Stat"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_Stat = Convert.ToString(dr["AssetsApply_Stat"]);
                    }
                    if (dr["AssetsApply_Remark"] != DBNull.Value)
                    {
                        assets_Apply.AssetsApply_Remark = Convert.ToString(dr["AssetsApply_Remark"]);
                    }
                    if (dr["Stat"] != DBNull.Value)
                    {
                        assets_Apply.Stat = Convert.ToInt32(dr["Stat"]);
                    }
                    ret.Add(assets_Apply);
                }
            }catch (System.Exception ex) { throw ex; }  finally { if (dr != null)
                                                                  {
                                                                      dr.Close();
                                                                  }
                                                                  if (idb.GetConnection() != null && idb.GetConnection().State == ConnectionState.Open)
                                                                  {
                                                                      idb.GetConnection().Close();
                                                                  }
            }
            return(ret);
        }
Пример #7
0
        /// <summary>
        /// 更新Assets_Apply对象(即:一条记录
        /// </summary>
        public int Update(Assets_Apply assets_Apply)
        {
            StringBuilder sbParameter = new StringBuilder();
            StringBuilder sb          = new StringBuilder();

            sb.Append(@"UPDATE       Assets_Apply       SET ");
            if (assets_Apply.AssetsApply_Code_IsChanged)
            {
                sbParameter.Append("AssetsApply_Code=@AssetsApply_Code, ");
            }
            if (assets_Apply.AssetsApply_AppPerson_IsChanged)
            {
                sbParameter.Append("AssetsApply_AppPerson=@AssetsApply_AppPerson, ");
            }
            if (assets_Apply.AssetsApply_AppDept_IsChanged)
            {
                sbParameter.Append("AssetsApply_AppDept=@AssetsApply_AppDept, ");
            }
            if (assets_Apply.AssetsApply_AppName_IsChanged)
            {
                sbParameter.Append("AssetsApply_AppName=@AssetsApply_AppName, ");
            }
            if (assets_Apply.AssetsApply_Parameter_IsChanged)
            {
                sbParameter.Append("AssetsApply_Parameter=@AssetsApply_Parameter, ");
            }
            if (assets_Apply.AssetsApply_Description_IsChanged)
            {
                sbParameter.Append("AssetsApply_Description=@AssetsApply_Description, ");
            }
            if (assets_Apply.AssetsApply_AppCount_IsChanged)
            {
                sbParameter.Append("AssetsApply_AppCount=@AssetsApply_AppCount, ");
            }
            if (assets_Apply.AssetsApply_Type_IsChanged)
            {
                sbParameter.Append("AssetsApply_Type=@AssetsApply_Type, ");
            }
            if (assets_Apply.AssetsApply_AppType_IsChanged)
            {
                sbParameter.Append("AssetsApply_AppType=@AssetsApply_AppType, ");
            }
            if (assets_Apply.AssetsApply_Date_IsChanged)
            {
                sbParameter.Append("AssetsApply_Date=@AssetsApply_Date, ");
            }
            if (assets_Apply.AssetsApply_AudistStat_IsChanged)
            {
                sbParameter.Append("AssetsApply_AudistStat=@AssetsApply_AudistStat, ");
            }
            if (assets_Apply.AssetsApply_Stat_IsChanged)
            {
                sbParameter.Append("AssetsApply_Stat=@AssetsApply_Stat, ");
            }
            if (assets_Apply.AssetsApply_Remark_IsChanged)
            {
                sbParameter.Append("AssetsApply_Remark=@AssetsApply_Remark, ");
            }
            if (assets_Apply.Stat_IsChanged)
            {
                sbParameter.Append("Stat=@Stat ");
            }
            sb.Append(sbParameter.ToString().Trim().TrimEnd(','));
            sb.Append(" WHERE 1=1 AND ((Stat is null) or (Stat=0))   and AssetsApply_ID=@AssetsApply_ID; ");
            string sql = sb.ToString();

            if (assets_Apply.AssetsApply_Code_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Code))
                {
                    idb.AddParameter("@AssetsApply_Code", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_Code", assets_Apply.AssetsApply_Code);
                }
            }
            if (assets_Apply.AssetsApply_AppPerson_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppPerson))
                {
                    idb.AddParameter("@AssetsApply_AppPerson", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_AppPerson", assets_Apply.AssetsApply_AppPerson);
                }
            }
            if (assets_Apply.AssetsApply_AppDept_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppDept))
                {
                    idb.AddParameter("@AssetsApply_AppDept", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_AppDept", assets_Apply.AssetsApply_AppDept);
                }
            }
            if (assets_Apply.AssetsApply_AppName_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppName))
                {
                    idb.AddParameter("@AssetsApply_AppName", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_AppName", assets_Apply.AssetsApply_AppName);
                }
            }
            if (assets_Apply.AssetsApply_Parameter_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Parameter))
                {
                    idb.AddParameter("@AssetsApply_Parameter", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_Parameter", assets_Apply.AssetsApply_Parameter);
                }
            }
            if (assets_Apply.AssetsApply_Description_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Description))
                {
                    idb.AddParameter("@AssetsApply_Description", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_Description", assets_Apply.AssetsApply_Description);
                }
            }
            if (assets_Apply.AssetsApply_AppCount_IsChanged)
            {
                if (assets_Apply.AssetsApply_AppCount == 0)
                {
                    idb.AddParameter("@AssetsApply_AppCount", 0);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_AppCount", assets_Apply.AssetsApply_AppCount);
                }
            }
            if (assets_Apply.AssetsApply_Type_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Type))
                {
                    idb.AddParameter("@AssetsApply_Type", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_Type", assets_Apply.AssetsApply_Type);
                }
            }
            if (assets_Apply.AssetsApply_AppType_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppType))
                {
                    idb.AddParameter("@AssetsApply_AppType", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_AppType", assets_Apply.AssetsApply_AppType);
                }
            }
            if (assets_Apply.AssetsApply_Date_IsChanged)
            {
                if (assets_Apply.AssetsApply_Date == DateTime.MinValue)
                {
                    idb.AddParameter("@AssetsApply_Date", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_Date", assets_Apply.AssetsApply_Date);
                }
            }
            if (assets_Apply.AssetsApply_AudistStat_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AudistStat))
                {
                    idb.AddParameter("@AssetsApply_AudistStat", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_AudistStat", assets_Apply.AssetsApply_AudistStat);
                }
            }
            if (assets_Apply.AssetsApply_Stat_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Stat))
                {
                    idb.AddParameter("@AssetsApply_Stat", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_Stat", assets_Apply.AssetsApply_Stat);
                }
            }
            if (assets_Apply.AssetsApply_Remark_IsChanged)
            {
                if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Remark))
                {
                    idb.AddParameter("@AssetsApply_Remark", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@AssetsApply_Remark", assets_Apply.AssetsApply_Remark);
                }
            }
            if (assets_Apply.Stat_IsChanged)
            {
                if (assets_Apply.Stat == 0)
                {
                    idb.AddParameter("@Stat", 0);
                }
                else
                {
                    idb.AddParameter("@Stat", assets_Apply.Stat);
                }
            }

            idb.AddParameter("@AssetsApply_ID", assets_Apply.AssetsApply_ID);


            int Re = 0;
            //SQL日志记录
            var RunMethod = System.Reflection.MethodBase.GetCurrentMethod();

            System.Collections.Hashtable param = new System.Collections.Hashtable();
            string Ex = "0";

            foreach (System.Collections.DictionaryEntry item in idb.GetParameters())
            {
                param.Add(item.Key, item.Value);
            }
            try
            {
                Re = idb.ExeCmd(sql);
                Ex = Re.ToString();
            }
            catch (Exception ex)
            {
                Ex = ex.Message;
            }

            SysRunLog.InsertRunSql(sql, param, RunMethod.DeclaringType + "." + RunMethod.Name, Ex);

            return(Re);
        }
Пример #8
0
        /// <summary>
        /// 添加Assets_Apply对象(即:一条记录)
        /// </summary>
        public int Add(Assets_Apply assets_Apply)
        {
            string sql = "INSERT INTO Assets_Apply (AssetsApply_Code,AssetsApply_AppPerson,AssetsApply_AppDept,AssetsApply_AppName,AssetsApply_Parameter,AssetsApply_Description,AssetsApply_AppCount,AssetsApply_Type,AssetsApply_AppType,AssetsApply_Date,AssetsApply_AudistStat,AssetsApply_Stat,AssetsApply_Remark,Stat) VALUES (@AssetsApply_Code,@AssetsApply_AppPerson,@AssetsApply_AppDept,@AssetsApply_AppName,@AssetsApply_Parameter,@AssetsApply_Description,@AssetsApply_AppCount,@AssetsApply_Type,@AssetsApply_AppType,@AssetsApply_Date,@AssetsApply_AudistStat,@AssetsApply_Stat,@AssetsApply_Remark,@Stat)";

            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Code))
            {
                idb.AddParameter("@AssetsApply_Code", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_Code", assets_Apply.AssetsApply_Code);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppPerson))
            {
                idb.AddParameter("@AssetsApply_AppPerson", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_AppPerson", assets_Apply.AssetsApply_AppPerson);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppDept))
            {
                idb.AddParameter("@AssetsApply_AppDept", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_AppDept", assets_Apply.AssetsApply_AppDept);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppName))
            {
                idb.AddParameter("@AssetsApply_AppName", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_AppName", assets_Apply.AssetsApply_AppName);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Parameter))
            {
                idb.AddParameter("@AssetsApply_Parameter", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_Parameter", assets_Apply.AssetsApply_Parameter);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Description))
            {
                idb.AddParameter("@AssetsApply_Description", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_Description", assets_Apply.AssetsApply_Description);
            }
            if (assets_Apply.AssetsApply_AppCount == 0)
            {
                idb.AddParameter("@AssetsApply_AppCount", 0);
            }
            else
            {
                idb.AddParameter("@AssetsApply_AppCount", assets_Apply.AssetsApply_AppCount);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Type))
            {
                idb.AddParameter("@AssetsApply_Type", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_Type", assets_Apply.AssetsApply_Type);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AppType))
            {
                idb.AddParameter("@AssetsApply_AppType", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_AppType", assets_Apply.AssetsApply_AppType);
            }
            if (assets_Apply.AssetsApply_Date == DateTime.MinValue)
            {
                idb.AddParameter("@AssetsApply_Date", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_Date", assets_Apply.AssetsApply_Date);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_AudistStat))
            {
                idb.AddParameter("@AssetsApply_AudistStat", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_AudistStat", assets_Apply.AssetsApply_AudistStat);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Stat))
            {
                idb.AddParameter("@AssetsApply_Stat", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_Stat", assets_Apply.AssetsApply_Stat);
            }
            if (string.IsNullOrEmpty(assets_Apply.AssetsApply_Remark))
            {
                idb.AddParameter("@AssetsApply_Remark", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@AssetsApply_Remark", assets_Apply.AssetsApply_Remark);
            }
            if (assets_Apply.Stat == 0)
            {
                idb.AddParameter("@Stat", 0);
            }
            else
            {
                idb.AddParameter("@Stat", assets_Apply.Stat);
            }


            int Re = 0;
            //SQL日志记录
            var RunMethod = System.Reflection.MethodBase.GetCurrentMethod();

            System.Collections.Hashtable param = new System.Collections.Hashtable();
            string Ex = "0";

            foreach (System.Collections.DictionaryEntry item in idb.GetParameters())
            {
                param.Add(item.Key, item.Value);
            }
            try
            {
                Re = idb.ExeCmd(sql);
                Ex = Re.ToString();
            }
            catch (Exception ex)
            {
                Ex = ex.Message;
            }

            SysRunLog.InsertRunSql(sql, param, RunMethod.DeclaringType + "." + RunMethod.Name, Ex);

            return(Re);
        }
Пример #9
0
        /// <summary>
        /// 获取实体数据
        /// </summary>
        /// <param name='strCondition'>条件(AND Code='11')</param>
        /// <returns>model</returns>
        public Assets_Apply GetModel(int id)
        {
            Assets_Apply model = instance.GetByKey(id);

            return(model);
        }