示例#1
0
        public virtual bool AddSupplierShopBanner(SupplierShopBannerInfo entity)
        {
            string    SqlAdd = null;
            DataTable DtAdd  = null;
            DataRow   DrAdd  = null;

            SqlAdd = "SELECT TOP 0 * FROM Supplier_Shop_Banner";
            DtAdd  = DBHelper.Query(SqlAdd);
            DrAdd  = DtAdd.NewRow();

            DrAdd["Shop_Banner_ID"]       = entity.Shop_Banner_ID;
            DrAdd["Shop_Banner_Type"]     = entity.Shop_Banner_Type;
            DrAdd["Shop_Banner_Name"]     = entity.Shop_Banner_Name;
            DrAdd["Shop_Banner_Url"]      = entity.Shop_Banner_Url;
            DrAdd["Shop_Banner_IsActive"] = entity.Shop_Banner_IsActive;
            DrAdd["Shop_Banner_Site"]     = entity.Shop_Banner_Site;

            DtAdd.Rows.Add(DrAdd);
            try
            {
                DBHelper.SaveChanges(SqlAdd, DtAdd);
                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                DtAdd.Dispose();
            }
        }
示例#2
0
 public virtual bool EditSupplierShopBanner(SupplierShopBannerInfo entity, RBACUserInfo UserPrivilege)
 {
     if (RBAC.CheckPrivilege(UserPrivilege, "9f2a1a11-c019-4443-b6eb-18ab1483e0b9"))
     {
         return(MyDAL.EditSupplierShopBanner(entity));
     }
     else
     {
         throw new TradePrivilegeException("没有权限,权限代码:9f2a1a11-c019-4443-b6eb-18ab1483e0b9错误");
     }
 }
示例#3
0
 public virtual bool AddSupplierShopBanner(SupplierShopBannerInfo entity, RBACUserInfo UserPrivilege)
 {
     if (RBAC.CheckPrivilege(UserPrivilege, "bdf7d616-c68b-439b-97a7-ac19aebfacba"))
     {
         return(MyDAL.AddSupplierShopBanner(entity));
     }
     else
     {
         throw new TradePrivilegeException("没有权限,权限代码:bdf7d616-c68b-439b-97a7-ac19aebfacba错误");
     }
 }
示例#4
0
        public virtual IList <SupplierShopBannerInfo> GetSupplierShopBanners(QueryInfo Query)
        {
            int PageSize;
            int CurrentPage;
            IList <SupplierShopBannerInfo> entitys = null;
            SupplierShopBannerInfo         entity = null;
            string        SqlList, SqlField, SqlOrder, SqlParam, SqlTable;
            SqlDataReader RdrList = null;

            try
            {
                CurrentPage = Query.CurrentPage;
                PageSize    = Query.PageSize;
                SqlTable    = "Supplier_Shop_Banner";
                SqlField    = "*";
                SqlParam    = DBHelper.GetSqlParam(Query.ParamInfos);
                SqlOrder    = DBHelper.GetSqlOrder(Query.OrderInfos);
                SqlList     = DBHelper.GetSqlPage(SqlTable, SqlField, SqlParam, SqlOrder, CurrentPage, PageSize);
                RdrList     = DBHelper.ExecuteReader(SqlList);
                if (RdrList.HasRows)
                {
                    entitys = new List <SupplierShopBannerInfo>();
                    while (RdrList.Read())
                    {
                        entity = new SupplierShopBannerInfo();
                        entity.Shop_Banner_ID       = Tools.NullInt(RdrList["Shop_Banner_ID"]);
                        entity.Shop_Banner_Type     = Tools.NullInt(RdrList["Shop_Banner_Type"]);
                        entity.Shop_Banner_Name     = Tools.NullStr(RdrList["Shop_Banner_Name"]);
                        entity.Shop_Banner_Url      = Tools.NullStr(RdrList["Shop_Banner_Url"]);
                        entity.Shop_Banner_IsActive = Tools.NullInt(RdrList["Shop_Banner_IsActive"]);
                        entity.Shop_Banner_Site     = Tools.NullStr(RdrList["Shop_Banner_Site"]);

                        entitys.Add(entity);
                        entity = null;
                    }
                }
                return(entitys);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (RdrList != null)
                {
                    RdrList.Close();
                    RdrList = null;
                }
            }
        }
示例#5
0
        public virtual bool EditSupplierShopBanner(SupplierShopBannerInfo entity)
        {
            string    SqlAdd = null;
            DataTable DtAdd  = null;
            DataRow   DrAdd  = null;

            SqlAdd = "SELECT * FROM Supplier_Shop_Banner WHERE Shop_Banner_ID = " + entity.Shop_Banner_ID;
            DtAdd  = DBHelper.Query(SqlAdd);
            try
            {
                if (DtAdd.Rows.Count > 0)
                {
                    DrAdd = DtAdd.Rows[0];
                    DrAdd["Shop_Banner_ID"]       = entity.Shop_Banner_ID;
                    DrAdd["Shop_Banner_Type"]     = entity.Shop_Banner_Type;
                    DrAdd["Shop_Banner_Name"]     = entity.Shop_Banner_Name;
                    DrAdd["Shop_Banner_Url"]      = entity.Shop_Banner_Url;
                    DrAdd["Shop_Banner_IsActive"] = entity.Shop_Banner_IsActive;
                    DrAdd["Shop_Banner_Site"]     = entity.Shop_Banner_Site;

                    DBHelper.SaveChanges(SqlAdd, DtAdd);
                }
                else
                {
                    return(false);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                DtAdd.Dispose();
            }
            return(true);
        }
示例#6
0
        public virtual SupplierShopBannerInfo GetSupplierShopBannerByID(int ID)
        {
            SupplierShopBannerInfo entity  = null;
            SqlDataReader          RdrList = null;

            try
            {
                string SqlList;
                SqlList = "SELECT * FROM Supplier_Shop_Banner WHERE Shop_Banner_ID = " + ID;
                RdrList = DBHelper.ExecuteReader(SqlList);
                if (RdrList.Read())
                {
                    entity = new SupplierShopBannerInfo();

                    entity.Shop_Banner_ID       = Tools.NullInt(RdrList["Shop_Banner_ID"]);
                    entity.Shop_Banner_Type     = Tools.NullInt(RdrList["Shop_Banner_Type"]);
                    entity.Shop_Banner_Name     = Tools.NullStr(RdrList["Shop_Banner_Name"]);
                    entity.Shop_Banner_Url      = Tools.NullStr(RdrList["Shop_Banner_Url"]);
                    entity.Shop_Banner_IsActive = Tools.NullInt(RdrList["Shop_Banner_IsActive"]);
                    entity.Shop_Banner_Site     = Tools.NullStr(RdrList["Shop_Banner_Site"]);
                }

                return(entity);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (RdrList != null)
                {
                    RdrList.Close();
                    RdrList = null;
                }
            }
        }