实例介绍
BrnShop开源网上商城源码, 官网下的是MVC3.0版本,没有4.0的。 所以本人已更改MVC4.0版本。可以用VS2012以及以上的版本打开使用。本人只改了MVC版本其他的跟官网一样。
【实例截图】
【核心代码】
BrnMall-2.1-Mvc4.0
└── BrnMall-2.1-Mvc4.0
├── Backup
│ ├── BrnMall.sln
│ ├── BrnMall.v12.suo
│ └── Presentation
│ └── BrnMall.Web
│ ├── App_Data
│ │ ├── credit.config
│ │ ├── email.config
│ │ ├── event.config
│ │ ├── installedplugin.config
│ │ ├── ipdata.config
│ │ ├── mall.config
│ │ ├── memcachedcache.config
│ │ ├── memcachedcart.config
│ │ ├── memcachedsession.config
│ │ ├── rabbitmqorder.config
│ │ ├── rdbs.config
│ │ ├── redisnosql.config
│ │ └── sms.config
│ ├── BrnMall.Web.csproj
│ ├── BrnMall.Web.csproj.user
│ ├── controllers
│ │ ├── AccountController.cs
│ │ ├── CartController.cs
│ │ ├── CatalogController.cs
│ │ ├── CouponController.cs
│ │ ├── HelpController.cs
│ │ ├── HomeController.cs
│ │ ├── NewsController.cs
│ │ ├── OrderController.cs
│ │ ├── StoreController.cs
│ │ ├── ToolController.cs
│ │ └── UCenterController.cs
│ ├── css
│ │ ├── account.css
│ │ ├── base.css
│ │ ├── buy.css
│ │ ├── content.css
│ │ ├── help.css
│ │ ├── home.css
│ │ ├── list.css
│ │ └── ucenter.css
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── images
│ │ ├── 20130603A.png
│ │ ├── bgW.jpg
│ │ ├── bottomBg.jpg
│ │ ├── bottomLogo.jpg
│ │ ├── buy1.png
│ │ ├── buy.png
│ │ ├── categorys.jpg
│ │ ├── deng.png
│ │ ├── d.png
│ │ ├── du.gif
│ │ ├── floorB.gif
│ │ ├── gonggao.jpg
│ │ ├── guanzhu.png
│ │ ├── helpcenter_icon1.gif
│ │ ├── helpcenter_icon2.gif
│ │ ├── help_leftsz.gif
│ │ ├── i.gif
│ │ ├── itab3.gif
│ │ ├── jia.png
│ │ ├── jz.gif
│ │ ├── ljjs.jpg
│ │ ├── loading.gif
│ │ ├── lock.jpg
│ │ ├── logo.jpg
│ │ ├── logo.png
│ │ ├── lr.jpg
│ │ ├── lrS.jpg
│ │ ├── m.jpg
│ │ ├── newpp.png
│ │ ├── noBuy.png
│ │ ├── ok.gif
│ │ ├── p.jpg
│ │ ├── power_cx.png
│ │ ├── power_jy.gif
│ │ ├── power_kx.gif
│ │ ├── power_wj.png
│ │ ├── shoppingNone.gif
│ │ ├── shopping.png
│ │ ├── succ-error.png
│ │ ├── succ-ico.png
│ │ ├── succ-ok.png
│ │ ├── tb.png
│ │ ├── tip.png
│ │ ├── tj.jpg
│ │ ├── u.png
│ │ ├── user-avatar.gif
│ │ ├── userIMG-bg.png
│ │ ├── userSJ.png
│ │ └── zoomloader.gif
│ ├── models
│ │ ├── AccountModel.cs
│ │ ├── CartModel.cs
│ │ ├── CatalogModel.cs
│ │ ├── HelpModel.cs
│ │ ├── NewsModel.cs
│ │ ├── OrderModel.cs
│ │ ├── StoreModel.cs
│ │ └── UCenterModel.cs
│ ├── plugins
│ │ └── Web.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── robots.txt
│ ├── scripts
│ │ ├── account.js
│ │ ├── common.js
│ │ ├── DD_belatedPNG.js
│ │ ├── dialog.js
│ │ ├── magiczoom
│ │ │ ├── graphics
│ │ │ │ ├── hint.gif
│ │ │ │ └── loader.gif
│ │ │ ├── magiczoom.css
│ │ │ └── magiczoom.js
│ │ ├── MSClass.js
│ │ ├── order.js
│ │ ├── product.js
│ │ ├── region.js
│ │ ├── ucenter.order.js
│ │ ├── ucenter.safe.js
│ │ ├── ucenter.user.js
│ │ └── utils.js
│ ├── themes
│ │ └── default
│ │ ├── theme.png
│ │ ├── theme.xml
│ │ └── views
│ │ ├── class.cshtml
│ │ ├── details.cshtml
│ │ ├── index.cshtml
│ │ ├── search.cshtml
│ │ └── Web.config
│ ├── views
│ │ ├── account
│ │ │ ├── findpwd.cshtml
│ │ │ ├── login.cshtml
│ │ │ ├── register.cshtml
│ │ │ ├── resetpwd.cshtml
│ │ │ └── selectfindpwdtype.cshtml
│ │ ├── cart
│ │ │ ├── addsuccess.cshtml
│ │ │ ├── ajaxindex.cshtml
│ │ │ ├── fullcutproductlist.cshtml
│ │ │ ├── fullsendmainproductlist.cshtml
│ │ │ ├── index.cshtml
│ │ │ └── snap.cshtml
│ │ ├── catalog
│ │ │ ├── ajaxproductconsultlist.cshtml
│ │ │ ├── ajaxproductreviewlist.cshtml
│ │ │ ├── category.cshtml
│ │ │ ├── productconsultlist.cshtml
│ │ │ ├── product.cshtml
│ │ │ ├── productreviewlist.cshtml
│ │ │ ├── search.cshtml
│ │ │ ├── suit.cshtml
│ │ │ └── topic.cshtml
│ │ ├── help
│ │ │ └── question.cshtml
│ │ ├── home
│ │ │ └── index.cshtml
│ │ ├── news
│ │ │ ├── details.cshtml
│ │ │ └── list.cshtml
│ │ ├── order
│ │ │ ├── confirmorder.cshtml
│ │ │ ├── payresult.cshtml
│ │ │ ├── payshow.cshtml
│ │ │ └── submitresult.cshtml
│ │ ├── shared
│ │ │ ├── 404.cshtml
│ │ │ ├── error.cshtml
│ │ │ ├── _layout.cshtml
│ │ │ └── prompt.cshtml
│ │ ├── ucenter
│ │ │ ├── couponlist.cshtml
│ │ │ ├── favoriteproductlist.cshtml
│ │ │ ├── favoritestorelist.cshtml
│ │ │ ├── orderinfo.cshtml
│ │ │ ├── orderlist.cshtml
│ │ │ ├── paycreditloglist.cshtml
│ │ │ ├── productconsultlist.cshtml
│ │ │ ├── productreviewlist.cshtml
│ │ │ ├── revieworder.cshtml
│ │ │ ├── safeinfo.cshtml
│ │ │ ├── safesuccess.cshtml
│ │ │ ├── safeupdate.cshtml
│ │ │ ├── safeverify.cshtml
│ │ │ ├── shipaddresslist.cshtml
│ │ │ └── userinfo.cshtml
│ │ ├── _ViewStart.cshtml
│ │ └── Web.config
│ ├── Web.config
│ └── Web.linux.config
├── BrnMall.sln
├── BrnMall.suo
├── BrnMall.v12.suo
├── Libraries
│ ├── BrnMall.Core
│ │ ├── Asyn
│ │ │ ├── BMAAsyn.cs
│ │ │ ├── IAsynStrategy.cs
│ │ │ └── State
│ │ │ ├── UpdateBrowseHistoryState.cs
│ │ │ ├── UpdateOnlineUserState.cs
│ │ │ ├── UpdateProductStatState.cs
│ │ │ ├── UpdatePVStatState.cs
│ │ │ └── UpdateSearchHistoryState.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.Core.dll
│ │ │ │ └── BrnMall.Core.pdb
│ │ │ └── Release
│ │ │ ├── BrnMall.Core.dll
│ │ │ └── BrnMall.Core.pdb
│ │ ├── BMAException.cs
│ │ ├── BMAVersion.cs
│ │ ├── BrnMall.Core.csproj
│ │ ├── Cache
│ │ │ ├── BMACache.cs
│ │ │ ├── CacheKeys.cs
│ │ │ ├── CacheManager
│ │ │ │ ├── CacheByRegex.cs
│ │ │ │ └── ICacheManager.cs
│ │ │ └── ICacheStrategy.cs
│ │ ├── Cart
│ │ │ ├── BMACart.cs
│ │ │ └── ICartStrategy.cs
│ │ ├── Config
│ │ │ ├── BMAConfig.cs
│ │ │ ├── IConfigStrategy.cs
│ │ │ └── Info
│ │ │ ├── CreditConfigInfo.cs
│ │ │ ├── EmailConfigInfo.cs
│ │ │ ├── EventConfigInfo.cs
│ │ │ ├── IConfigInfo.cs
│ │ │ ├── MallConfigInfo.cs
│ │ │ ├── MemcachedCacheConfigInfo.cs
│ │ │ ├── MemcachedCartConfigInfo.cs
│ │ │ ├── MemcachedSessionConfigInfo.cs
│ │ │ ├── RabbitMQOrderConfigInfo.cs
│ │ │ ├── RDBSConfigInfo.cs
│ │ │ ├── RedisNOSQLConfigInfo.cs
│ │ │ └── SMSConfigInfo.cs
│ │ ├── Data
│ │ │ ├── BMAData.cs
│ │ │ ├── DbException.cs
│ │ │ ├── NOSQL
│ │ │ │ └── INOSQLStrategy
│ │ │ │ ├── IOrderStrategy.cs
│ │ │ │ ├── IProductStrategy.cs
│ │ │ │ ├── IPromotionStrategy.cs
│ │ │ │ ├── IStoreStrategy.cs
│ │ │ │ └── IUserStrategy.cs
│ │ │ └── RDBS
│ │ │ ├── IRDBSStrategy
│ │ │ │ ├── IMallStrategy.cs
│ │ │ │ ├── IOrderStrategy.cs
│ │ │ │ ├── IProductStrategy.cs
│ │ │ │ ├── IPromotionStrategy.cs
│ │ │ │ ├── IRDBSStrategy.cs
│ │ │ │ ├── IStoreStrategy.cs
│ │ │ │ └── IUserStrategy.cs
│ │ │ ├── RDBSFields.cs
│ │ │ └── RDBSHelper.cs
│ │ ├── Domain
│ │ │ ├── Mall
│ │ │ │ ├── AdvertInfo.cs
│ │ │ │ ├── AdvertPositionInfo.cs
│ │ │ │ ├── BannedIPInfo.cs
│ │ │ │ ├── BannerInfo.cs
│ │ │ │ ├── CreditAction.cs
│ │ │ │ ├── CreditLogInfo.cs
│ │ │ │ ├── FilterWordInfo.cs
│ │ │ │ ├── FriendLinkInfo.cs
│ │ │ │ ├── HelpInfo.cs
│ │ │ │ ├── LoginFailLogInfo.cs
│ │ │ │ ├── MallAdminLogInfo.cs
│ │ │ │ ├── NavInfo.cs
│ │ │ │ ├── NewsInfo.cs
│ │ │ │ ├── NewsTypeInfo.cs
│ │ │ │ ├── PVStatInfo.cs
│ │ │ │ ├── RegionInfo.cs
│ │ │ │ ├── ShipCompanyInfo.cs
│ │ │ │ └── StoreAdminLogInfo.cs
│ │ │ ├── Order
│ │ │ │ ├── CartItemInfo.cs
│ │ │ │ ├── OrderActionInfo.cs
│ │ │ │ ├── OrderActionType.cs
│ │ │ │ ├── OrderInfo.cs
│ │ │ │ ├── OrderProductInfo.cs
│ │ │ │ ├── OrderRefundInfo.cs
│ │ │ │ └── OrderState.cs
│ │ │ ├── Product
│ │ │ │ ├── AttributeGroupInfo.cs
│ │ │ │ ├── AttributeInfo.cs
│ │ │ │ ├── AttributeValueInfo.cs
│ │ │ │ ├── BrandInfo.cs
│ │ │ │ ├── CategoryInfo.cs
│ │ │ │ ├── ProductAttributeInfo.cs
│ │ │ │ ├── ProductConsultInfo.cs
│ │ │ │ ├── ProductConsultTypeInfo.cs
│ │ │ │ ├── ProductImageInfo.cs
│ │ │ │ ├── ProductInfo.cs
│ │ │ │ ├── ProductKeyWordInfo.cs
│ │ │ │ ├── ProductReviewInfo.cs
│ │ │ │ ├── ProductSKUItemInfo.cs
│ │ │ │ ├── ProductState.cs
│ │ │ │ ├── ProductStockInfo.cs
│ │ │ │ └── TimeProductInfo.cs
│ │ │ ├── Promotion
│ │ │ │ ├── BuySendPromotionInfo.cs
│ │ │ │ ├── CouponInfo.cs
│ │ │ │ ├── CouponTypeInfo.cs
│ │ │ │ ├── ExtGiftInfo.cs
│ │ │ │ ├── ExtSuitProductInfo.cs
│ │ │ │ ├── FullCutPromotionInfo.cs
│ │ │ │ ├── FullSendPromotionInfo.cs
│ │ │ │ ├── GiftPromotionInfo.cs
│ │ │ │ ├── SinglePromotionInfo.cs
│ │ │ │ ├── SuitPromotionInfo.cs
│ │ │ │ └── TopicInfo.cs
│ │ │ ├── Store
│ │ │ │ ├── StoreClassInfo.cs
│ │ │ │ ├── StoreIndustryInfo.cs
│ │ │ │ ├── StoreInfo.cs
│ │ │ │ ├── StoreKeeperInfo.cs
│ │ │ │ ├── StoreRankInfo.cs
│ │ │ │ ├── StoreReviewInfo.cs
│ │ │ │ ├── StoreShipFeeInfo.cs
│ │ │ │ ├── StoreShipTemplateInfo.cs
│ │ │ │ └── StoreState.cs
│ │ │ └── User
│ │ │ ├── MallAdminActionInfo.cs
│ │ │ ├── MallAdminGroupInfo.cs
│ │ │ ├── OAuthInfo.cs
│ │ │ ├── OnlineUserInfo.cs
│ │ │ ├── ShipAddressInfo.cs
│ │ │ ├── UserInfo.cs
│ │ │ └── UserRankInfo.cs
│ │ │ ├── BMAEmail.cs
│ │ │ └── IEmailStrategy.cs
│ │ ├── Event
│ │ │ ├── BMAEvent.cs
│ │ │ ├── EventInfo.cs
│ │ │ └── IEvent.cs
│ │ ├── Helper
│ │ │ ├── CommonHelper.cs
│ │ │ ├── IOHelper.cs
│ │ │ ├── SecureHelper.cs
│ │ │ ├── StringHelper.cs
│ │ │ ├── TypeHelper.cs
│ │ │ ├── ValidateHelper.cs
│ │ │ └── WebHelper.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.Core.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.Core.dll
│ │ │ │ ├── BrnMall.Core.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.Core.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.Core.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.Core.dll
│ │ │ ├── BrnMall.Core.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Order
│ │ │ ├── BMAOrder.cs
│ │ │ └── IOrderStrategy.cs
│ │ ├── Plugin
│ │ │ ├── BMAPlugin.cs
│ │ │ ├── Interface
│ │ │ │ ├── IOAuthPlugin.cs
│ │ │ │ ├── IPayPlugin.cs
│ │ │ │ └── IPlugin.cs
│ │ │ ├── PluginInfo.cs
│ │ │ └── PluginType.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Random
│ │ │ ├── BMARandom.cs
│ │ │ ├── IRandomStrategy.cs
│ │ │ └── RandomImage.cs
│ │ ├── Search
│ │ │ ├── BMASearch.cs
│ │ │ └── ISearchStrategy.cs
│ │ ├── Session
│ │ │ ├── BMASession.cs
│ │ │ └── ISessionStrategy.cs
│ │ └── SMS
│ │ ├── BMASMS.cs
│ │ └── ISMSStrategy.cs
│ ├── BrnMall.Data
│ │ ├── Adverts.cs
│ │ ├── BannedIPs.cs
│ │ ├── Banners.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.Core.dll
│ │ │ │ ├── BrnMall.Core.pdb
│ │ │ │ ├── BrnMall.Data.dll
│ │ │ │ └── BrnMall.Data.pdb
│ │ │ └── Release
│ │ │ ├── BrnMall.Core.dll
│ │ │ ├── BrnMall.Core.pdb
│ │ │ ├── BrnMall.Data.dll
│ │ │ └── BrnMall.Data.pdb
│ │ ├── Brands.cs
│ │ ├── BrnMall.Data.csproj
│ │ ├── BrowseHistories.cs
│ │ ├── Categories.cs
│ │ ├── Coupons.cs
│ │ ├── Credits.cs
│ │ ├── DataBases.cs
│ │ ├── EventLogs.cs
│ │ ├── FavoriteProducts.cs
│ │ ├── FavoriteStores.cs
│ │ ├── FilterWords.cs
│ │ ├── FriendLinks.cs
│ │ ├── Helps.cs
│ │ ├── LoginFailLogs.cs
│ │ ├── MallAdminActions.cs
│ │ ├── MallAdminGroups.cs
│ │ ├── MallAdminLogs.cs
│ │ ├── Navs.cs
│ │ ├── News.cs
│ │ ├── OAuths.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.Data.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.Data.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.Data.dll
│ │ │ │ ├── BrnMall.Data.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.Data.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.Data.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.Data.dll
│ │ │ ├── BrnMall.Data.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── OnlineUsers.cs
│ │ ├── OrderActions.cs
│ │ ├── OrderRefunds.cs
│ │ ├── Orders.cs
│ │ ├── ProductConsults.cs
│ │ ├── ProductReviews.cs
│ │ ├── Products.cs
│ │ ├── ProductStats.cs
│ │ ├── Promotions.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PVStats.cs
│ │ ├── Regions.cs
│ │ ├── SearchHistories.cs
│ │ ├── ShipAddresses.cs
│ │ ├── ShipCompanies.cs
│ │ ├── StoreAdminLogs.cs
│ │ ├── StoreIndustries.cs
│ │ ├── StoreRanks.cs
│ │ ├── Stores.cs
│ │ ├── Topics.cs
│ │ ├── UserRanks.cs
│ │ └── Users.cs
│ └── BrnMall.Services
│ ├── Admin
│ │ ├── AdminAdverts.cs
│ │ ├── AdminBannedIPs.cs
│ │ ├── AdminBanners.cs
│ │ ├── AdminBrands.cs
│ │ ├── AdminCategories.cs
│ │ ├── AdminCoupons.cs
│ │ ├── AdminCredits.cs
│ │ ├── AdminFilterWords.cs
│ │ ├── AdminFriendLinks.cs
│ │ ├── AdminHelps.cs
│ │ ├── AdminNavs.cs
│ │ ├── AdminNews.cs
│ │ ├── AdminOrderRefunds.cs
│ │ ├── AdminOrders.cs
│ │ ├── AdminPlugins.cs
│ │ ├── AdminProductConsults.cs
│ │ ├── AdminProductReviews.cs
│ │ ├── AdminProducts.cs
│ │ ├── AdminPromotions.cs
│ │ ├── AdminSearchHistories.cs
│ │ ├── AdminShipCompanies.cs
│ │ ├── AdminStoreIndustries.cs
│ │ ├── AdminStoreRanks.cs
│ │ ├── AdminStores.cs
│ │ ├── AdminTopic.cs
│ │ ├── AdminUserRanks.cs
│ │ ├── AdminUsers.cs
│ │ ├── MallAdminActions.cs
│ │ ├── MallAdminGroups.cs
│ │ ├── MallAdminLogs.cs
│ │ └── StoreAdminLogs.cs
│ ├── Adverts.cs
│ ├── Asyn.cs
│ ├── BannedIPs.cs
│ ├── Banners.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── BrnMall.Core.dll
│ │ │ ├── BrnMall.Core.pdb
│ │ │ ├── BrnMall.Data.dll
│ │ │ ├── BrnMall.Data.pdb
│ │ │ ├── BrnMall.Services.dll
│ │ │ └── BrnMall.Services.pdb
│ │ └── Release
│ │ ├── BrnMall.Core.dll
│ │ ├── BrnMall.Core.pdb
│ │ ├── BrnMall.Data.dll
│ │ ├── BrnMall.Data.pdb
│ │ ├── BrnMall.Services.dll
│ │ └── BrnMall.Services.pdb
│ ├── Brands.cs
│ ├── BrnMall.Services.csproj
│ ├── BrowseHistories.cs
│ ├── Carts.cs
│ ├── Categories.cs
│ ├── Coupons.cs
│ ├── Credits.cs
│ ├── DataBases.cs
│ ├── Emails.cs
│ ├── EventLogs.cs
│ ├── FavoriteProducts.cs
│ ├── FavoriteStores.cs
│ ├── FilterWords.cs
│ ├── FriendLinks.cs
│ ├── Helps.cs
│ ├── IPSearch.cs
│ ├── LoginFailLogs.cs
│ ├── MallUtils.cs
│ ├── Navs.cs
│ ├── News.cs
│ ├── OAuths.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── BrnMall.Services.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.Services.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.Services.dll
│ │ │ ├── BrnMall.Services.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── BrnMall.Services.csproj.FileListAbsolute.txt
│ │ ├── BrnMall.Services.csprojResolveAssemblyReference.cache
│ │ ├── BrnMall.Services.dll
│ │ ├── BrnMall.Services.pdb
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── OnlineUsers.cs
│ ├── OrderActions.cs
│ ├── OrderRefunds.cs
│ ├── Orders.cs
│ ├── Plugins.cs
│ ├── ProductConsults.cs
│ ├── ProductReviews.cs
│ ├── Products.cs
│ ├── ProductStats.cs
│ ├── Promotions.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── PVStats.cs
│ ├── Randoms.cs
│ ├── Regions.cs
│ ├── Searches.cs
│ ├── SearchHistories.cs
│ ├── Sessions.cs
│ ├── ShipAddresses.cs
│ ├── ShipCompanies.cs
│ ├── SMSes.cs
│ ├── StoreIndustries.cs
│ ├── StoreRanks.cs
│ ├── Stores.cs
│ ├── Topics.cs
│ ├── UserRanks.cs
│ └── Users.cs
├── License.html
├── Plugins
│ ├── BrnMall.OAuthPlugin.QQ
│ │ ├── BrnMall.OAuthPlugin.QQ.csproj
│ │ ├── codes
│ │ │ ├── PluginService.cs
│ │ │ └── PluginUtils.cs
│ │ ├── controllers
│ │ │ ├── AdminQQAuthController.cs
│ │ │ └── QQAuthController.cs
│ │ ├── db.config
│ │ ├── models
│ │ │ └── ConfigModel.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.OAuthPlugin.QQ.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.OAuthPlugin.QQ.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.OAuthPlugin.QQ.dll
│ │ │ │ ├── BrnMall.OAuthPlugin.QQ.pdb
│ │ │ │ ├── BrnShop.OAuthPlugin.QQ.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnShop.OAuthPlugin.QQ.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnShop.OAuthPlugin.QQ.dll
│ │ │ │ ├── BrnShop.OAuthPlugin.QQ.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.OAuthPlugin.QQ.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.OAuthPlugin.QQ.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.OAuthPlugin.QQ.dll
│ │ │ ├── BrnMall.OAuthPlugin.QQ.pdb
│ │ │ ├── BrnShop.OAuthPlugin.QQ.csproj.FileListAbsolute.txt
│ │ │ ├── BrnShop.OAuthPlugin.QQ.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnShop.OAuthPlugin.QQ.dll
│ │ │ ├── BrnShop.OAuthPlugin.QQ.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── plugin.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── views
│ │ │ └── adminqqoauth
│ │ │ └── config.cshtml
│ │ └── Web.config
│ ├── BrnMall.PayPlugin.Alipay
│ │ ├── BrnMall.PayPlugin.Alipay.csproj
│ │ ├── codes
│ │ │ ├── alipay
│ │ │ │ ├── AlipayConfig.cs
│ │ │ │ ├── AlipayCore.cs
│ │ │ │ ├── AlipayMD5.cs
│ │ │ │ ├── AlipayNotify.cs
│ │ │ │ └── AlipaySubmit.cs
│ │ │ ├── PluginService.cs
│ │ │ └── PluginUtils.cs
│ │ ├── controllers
│ │ │ ├── AdminAlipayController.cs
│ │ │ └── AlipayController.cs
│ │ ├── db.config
│ │ ├── models
│ │ │ └── ConfigModel.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.PayPlugin.Alipay.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.PayPlugin.Alipay.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.PayPlugin.Alipay.dll
│ │ │ │ ├── BrnMall.PayPlugin.Alipay.pdb
│ │ │ │ ├── BrnShop.PayPlugin.Alipay.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnShop.PayPlugin.Alipay.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnShop.PayPlugin.Alipay.dll
│ │ │ │ ├── BrnShop.PayPlugin.Alipay.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.PayPlugin.Alipay.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.PayPlugin.Alipay.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.PayPlugin.Alipay.dll
│ │ │ ├── BrnMall.PayPlugin.Alipay.pdb
│ │ │ ├── BrnShop.PayPlugin.Alipay.csproj.FileListAbsolute.txt
│ │ │ ├── BrnShop.PayPlugin.Alipay.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnShop.PayPlugin.Alipay.dll
│ │ │ ├── BrnShop.PayPlugin.Alipay.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── plugin.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── views
│ │ │ ├── adminalipay
│ │ │ │ └── config.cshtml
│ │ │ └── show.cshtml
│ │ └── Web.config
│ ├── BrnMall.PayPlugin.ChinaBank
│ │ ├── BrnMall.PayPlugin.ChinaBank.csproj
│ │ ├── codes
│ │ │ ├── PluginService.cs
│ │ │ └── PluginUtils.cs
│ │ ├── controllers
│ │ │ ├── AdminChinaBankController.cs
│ │ │ └── ChinaBankController.cs
│ │ ├── db.config
│ │ ├── models
│ │ │ └── ConfigModel.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.PayPlugin.ChinaBank.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.PayPlugin.ChinaBank.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.PayPlugin.ChinaBank.dll
│ │ │ │ ├── BrnMall.PayPlugin.ChinaBank.pdb
│ │ │ │ ├── BrnShop.PayPlugin.ChinaBank.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnShop.PayPlugin.ChinaBank.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnShop.PayPlugin.ChinaBank.dll
│ │ │ │ ├── BrnShop.PayPlugin.ChinaBank.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.PayPlugin.ChinaBank.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.PayPlugin.ChinaBank.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.PayPlugin.ChinaBank.dll
│ │ │ ├── BrnMall.PayPlugin.ChinaBank.pdb
│ │ │ ├── BrnShop.PayPlugin.ChinaBank.csproj.FileListAbsolute.txt
│ │ │ ├── BrnShop.PayPlugin.ChinaBank.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnShop.PayPlugin.ChinaBank.dll
│ │ │ ├── BrnShop.PayPlugin.ChinaBank.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── plugin.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── views
│ │ │ ├── adminchinabank
│ │ │ │ └── config.cshtml
│ │ │ └── show.cshtml
│ │ └── Web.config
│ ├── BrnMall.PayPlugin.COD
│ │ ├── BrnMall.PayPlugin.COD.csproj
│ │ ├── codes
│ │ │ ├── PluginService.cs
│ │ │ └── PluginUtils.cs
│ │ ├── controllers
│ │ │ └── AdminCODController.cs
│ │ ├── db.config
│ │ ├── models
│ │ │ └── ConfigModel.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.PayPlugin.COD.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.PayPlugin.COD.dll
│ │ │ │ ├── BrnMall.PayPlugin.COD.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.PayPlugin.COD.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.PayPlugin.COD.dll
│ │ │ ├── BrnMall.PayPlugin.COD.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── plugin.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── views
│ │ │ └── admincod
│ │ │ └── config.cshtml
│ │ └── Web.config
│ ├── BrnMall.PayPlugin.EMSRemit
│ │ ├── BrnMall.PayPlugin.EMSRemit.csproj
│ │ ├── codes
│ │ │ ├── PluginService.cs
│ │ │ └── PluginUtils.cs
│ │ ├── controllers
│ │ │ └── AdminEMSRemitController.cs
│ │ ├── db.config
│ │ ├── models
│ │ │ └── ConfigModel.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.PayPlugin.EMSRemit.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.PayPlugin.EMSRemit.dll
│ │ │ │ ├── BrnMall.PayPlugin.EMSRemit.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.PayPlugin.EMSRemit.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.PayPlugin.EMSRemit.dll
│ │ │ ├── BrnMall.PayPlugin.EMSRemit.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── plugin.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── views
│ │ │ └── adminemsremit
│ │ │ └── config.cshtml
│ │ └── Web.config
│ └── BrnMall.PayPlugin.Tenpay
│ ├── BrnMall.PayPlugin.Tenpay.csproj
│ ├── codes
│ │ ├── PluginService.cs
│ │ ├── PluginUtils.cs
│ │ └── tenpay
│ │ ├── ClientResponseHandler.cs
│ │ ├── MD5Util.cs
│ │ ├── RequestHandler.cs
│ │ ├── ResponseHandler.cs
│ │ ├── TenpayHttpClient.cs
│ │ └── TenpayUtil.cs
│ ├── controllers
│ │ ├── AdminTenpayController.cs
│ │ └── TenpayController.cs
│ ├── db.config
│ ├── models
│ │ └── ConfigModel.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── BrnMall.PayPlugin.Tenpay.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.PayPlugin.Tenpay.dll
│ │ │ ├── BrnMall.PayPlugin.Tenpay.pdb
│ │ │ ├── BrnShop.PayPlugin.Tenpay.csproj.FileListAbsolute.txt
│ │ │ ├── BrnShop.PayPlugin.Tenpay.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnShop.PayPlugin.Tenpay.dll
│ │ │ ├── BrnShop.PayPlugin.Tenpay.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── BrnMall.PayPlugin.Tenpay.csproj.FileListAbsolute.txt
│ │ ├── BrnMall.PayPlugin.Tenpay.dll
│ │ ├── BrnMall.PayPlugin.Tenpay.pdb
│ │ ├── BrnShop.PayPlugin.Tenpay.csproj.FileListAbsolute.txt
│ │ ├── BrnShop.PayPlugin.Tenpay.csprojResolveAssemblyReference.cache
│ │ ├── BrnShop.PayPlugin.Tenpay.dll
│ │ ├── BrnShop.PayPlugin.Tenpay.pdb
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── plugin.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── views
│ │ ├── admintenpay
│ │ │ └── config.cshtml
│ │ └── show.cshtml
│ └── Web.config
├── Presentation
│ ├── BrnMall.Web
│ │ ├── admin_mall
│ │ │ ├── AreaRegistration.cs
│ │ │ ├── BrnMall.Web.MallAdmin.csproj
│ │ │ ├── BrnMall.Web.MallAdmin.csproj.user
│ │ │ ├── cache
│ │ │ │ ├── category
│ │ │ │ │ └── selectlist.js
│ │ │ │ └── menu
│ │ │ │ ├── 2.js
│ │ │ │ └── 3.js
│ │ │ ├── content
│ │ │ │ ├── css
│ │ │ │ │ ├── site.css
│ │ │ │ │ └── uploadify.css
│ │ │ │ ├── flashes
│ │ │ │ │ └── uploadify.swf
│ │ │ │ ├── images
│ │ │ │ │ ├── add.jpg
│ │ │ │ │ ├── a.jpg
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── bottombg.jpg
│ │ │ │ │ ├── bt_right.jpg
│ │ │ │ │ ├── cancel.jpg
│ │ │ │ │ ├── delete2.gif
│ │ │ │ │ ├── delete.jpg
│ │ │ │ │ ├── edit.jpg
│ │ │ │ │ ├── goback.jpg
│ │ │ │ │ ├── ico1.jpg
│ │ │ │ │ ├── li1.jpg
│ │ │ │ │ ├── li.jpg
│ │ │ │ │ ├── logo.jpg
│ │ │ │ │ ├── menubg_bottom.jpg
│ │ │ │ │ ├── menubg.jpg
│ │ │ │ │ ├── menubg_top.jpg
│ │ │ │ │ ├── menuli_bg_hot.jpg
│ │ │ │ │ ├── menuli_bg.jpg
│ │ │ │ │ ├── nav_bg_hot.jpg
│ │ │ │ │ ├── progressbar.gif
│ │ │ │ │ ├── refresh.jpg
│ │ │ │ │ ├── right_ico.jpg
│ │ │ │ │ ├── search1.gif
│ │ │ │ │ ├── selectbg.gif
│ │ │ │ │ ├── selectbgico.gif
│ │ │ │ │ ├── s.jpg
│ │ │ │ │ ├── submit.jpg
│ │ │ │ │ ├── tagbg.jpg
│ │ │ │ │ ├── tagbg-left.jpg
│ │ │ │ │ ├── tip.gif
│ │ │ │ │ ├── top_bg.jpg
│ │ │ │ │ ├── tree_close.gif
│ │ │ │ │ ├── tree_open.gif
│ │ │ │ │ └── uploadify-cancel.png
│ │ │ │ ├── jbox
│ │ │ │ │ ├── jquery.jBox-2.3.min.js
│ │ │ │ │ └── Skins
│ │ │ │ │ └── Default
│ │ │ │ │ ├── Desktop.ini
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── jbox-button1.png
│ │ │ │ │ │ ├── jbox-button2.png
│ │ │ │ │ │ ├── jbox-close1.gif
│ │ │ │ │ │ ├── jbox-close2.gif
│ │ │ │ │ │ ├── jbox-content-loading.gif
│ │ │ │ │ │ ├── jbox-icons-ie6.gif
│ │ │ │ │ │ ├── jbox-icons.png
│ │ │ │ │ │ ├── jbox-loading1.gif
│ │ │ │ │ │ ├── jbox-loading2.gif
│ │ │ │ │ │ ├── jbox-loading3.gif
│ │ │ │ │ │ └── jbox-title-icon.gif
│ │ │ │ │ └── jbox.css
│ │ │ │ ├── my97datepicker
│ │ │ │ │ ├── calendar.js
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ ├── My97DatePicker.htm
│ │ │ │ │ ├── skin
│ │ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ └── img.gif
│ │ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ │ └── whyGreen
│ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ └── img.gif
│ │ │ │ │ └── WdatePicker.js
│ │ │ │ └── ueditor
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ └── anchor.html
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── internal.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.html
│ │ │ │ │ └── table
│ │ │ │ │ ├── dragicon.png
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── lang
│ │ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── themes
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ └── iframe.css
│ │ │ │ ├── third-party
│ │ │ │ │ ├── codemirror
│ │ │ │ │ │ ├── codemirror.css
│ │ │ │ │ │ └── codemirror.js
│ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ │ └── shCore.js
│ │ │ │ │ ├── webuploader
│ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ ├── webuploader.js
│ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ └── zeroclipboard
│ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ ├── ueditor.all.js
│ │ │ │ ├── ueditor.config.js
│ │ │ │ └── ueditor.parse.js
│ │ │ ├── controllers
│ │ │ │ ├── AdvertController.cs
│ │ │ │ ├── BannedIPController.cs
│ │ │ │ ├── BannerController.cs
│ │ │ │ ├── BrandController.cs
│ │ │ │ ├── CategoryController.cs
│ │ │ │ ├── CouponController.cs
│ │ │ │ ├── DataBaseController.cs
│ │ │ │ ├── EventController.cs
│ │ │ │ ├── FilterWordController.cs
│ │ │ │ ├── FriendLinkController.cs
│ │ │ │ ├── HelpController.cs
│ │ │ │ ├── HomeController.cs
│ │ │ │ ├── LogController.cs
│ │ │ │ ├── MallAdminGroupController.cs
│ │ │ │ ├── NavController.cs
│ │ │ │ ├── NewsController.cs
│ │ │ │ ├── OrderController.cs
│ │ │ │ ├── PluginController.cs
│ │ │ │ ├── ProductConsultController.cs
│ │ │ │ ├── ProductController.cs
│ │ │ │ ├── ProductReviewController.cs
│ │ │ │ ├── PromotionController.cs
│ │ │ │ ├── SetController.cs
│ │ │ │ ├── ShipCompanyController.cs
│ │ │ │ ├── StatController.cs
│ │ │ │ ├── StoreController.cs
│ │ │ │ ├── StoreIndustryController.cs
│ │ │ │ ├── StoreRankController.cs
│ │ │ │ ├── ToolController.cs
│ │ │ │ ├── TopicController.cs
│ │ │ │ ├── UserController.cs
│ │ │ │ └── UserRankController.cs
│ │ │ ├── models
│ │ │ │ ├── AdvertModel.cs
│ │ │ │ ├── BannedIPModel.cs
│ │ │ │ ├── BannerModel.cs
│ │ │ │ ├── BrandModel.cs
│ │ │ │ ├── CategoryModel.cs
│ │ │ │ ├── CouponModel.cs
│ │ │ │ ├── EventModel.cs
│ │ │ │ ├── FilterWordModel.cs
│ │ │ │ ├── FriendLinkModel.cs
│ │ │ │ ├── HelpModel.cs
│ │ │ │ ├── HomeModel.cs
│ │ │ │ ├── LogModel.cs
│ │ │ │ ├── MallAdminGroupModel.cs
│ │ │ │ ├── NavModel.cs
│ │ │ │ ├── NewsModel.cs
│ │ │ │ ├── OrderModel.cs
│ │ │ │ ├── PluginModel.cs
│ │ │ │ ├── ProductConsultModel.cs
│ │ │ │ ├── ProductModel.cs
│ │ │ │ ├── ProductReviewModel.cs
│ │ │ │ ├── PromotionModel.cs
│ │ │ │ ├── SetModel.cs
│ │ │ │ ├── ShipCompanyModel.cs
│ │ │ │ ├── StatModel.cs
│ │ │ │ ├── StoreIndustryModel.cs
│ │ │ │ ├── StoreModel.cs
│ │ │ │ ├── StoreRankModel.cs
│ │ │ │ ├── TopicModel.cs
│ │ │ │ ├── UserModel.cs
│ │ │ │ └── UserRankModel.cs
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── BrnMall.Web.MallAdmin.csproj.FileListAbsolute.txt
│ │ │ │ │ ├── BrnMall.Web.MallAdmin.dll
│ │ │ │ │ ├── BrnMall.Web.MallAdmin.pdb
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── BrnMall.Web.MallAdmin.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.Web.MallAdmin.dll
│ │ │ │ ├── BrnMall.Web.MallAdmin.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── scripts
│ │ │ │ ├── excanvas.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jquery.uploadify.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ │ ├── product.js
│ │ │ │ ├── region.js
│ │ │ │ ├── selectlist.js
│ │ │ │ └── showlist.js
│ │ │ ├── views
│ │ │ │ ├── advert
│ │ │ │ │ ├── addadvert.cshtml
│ │ │ │ │ ├── addadvertposition.cshtml
│ │ │ │ │ ├── advertlist.cshtml
│ │ │ │ │ ├── advertpositionlist.cshtml
│ │ │ │ │ ├── editadvert.cshtml
│ │ │ │ │ └── editadvertposition.cshtml
│ │ │ │ ├── bannedip
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── banner
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── brand
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── category
│ │ │ │ │ ├── addattribute.cshtml
│ │ │ │ │ ├── addattributegroup.cshtml
│ │ │ │ │ ├── addattributevalue.cshtml
│ │ │ │ │ ├── addcategory.cshtml
│ │ │ │ │ ├── attributegrouplist.cshtml
│ │ │ │ │ ├── attributelist.cshtml
│ │ │ │ │ ├── attributevaluelist.cshtml
│ │ │ │ │ ├── categorylist.cshtml
│ │ │ │ │ ├── editattribute.cshtml
│ │ │ │ │ ├── editattributegroup.cshtml
│ │ │ │ │ ├── editattributevalue.cshtml
│ │ │ │ │ └── editcategory.cshtml
│ │ │ │ ├── coupon
│ │ │ │ │ ├── addcoupontype.cshtml
│ │ │ │ │ ├── couponlist.cshtml
│ │ │ │ │ ├── couponproductlist.cshtml
│ │ │ │ │ ├── coupontypelist.cshtml
│ │ │ │ │ ├── sendcoupon.cshtml
│ │ │ │ │ └── showcoupontype.cshtml
│ │ │ │ ├── database
│ │ │ │ │ └── manage.cshtml
│ │ │ │ ├── event
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── filterword
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── friendlink
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── help
│ │ │ │ │ ├── addhelpcategory.cshtml
│ │ │ │ │ ├── addhelp.cshtml
│ │ │ │ │ ├── edithelpcategory.cshtml
│ │ │ │ │ ├── edithelp.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── home
│ │ │ │ │ ├── index.cshtml
│ │ │ │ │ ├── mallruninfo.cshtml
│ │ │ │ │ ├── menu.cshtml
│ │ │ │ │ └── navbar.cshtml
│ │ │ │ ├── log
│ │ │ │ │ ├── creditloglist.cshtml
│ │ │ │ │ ├── malladminloglist.cshtml
│ │ │ │ │ └── storeadminloglist.cshtml
│ │ │ │ ├── malladmingroup
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── nav
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── news
│ │ │ │ │ ├── addnews.cshtml
│ │ │ │ │ ├── addnewstype.cshtml
│ │ │ │ │ ├── editnews.cshtml
│ │ │ │ │ ├── editnewstype.cshtml
│ │ │ │ │ ├── newslist.cshtml
│ │ │ │ │ └── newstypelist.cshtml
│ │ │ │ ├── order
│ │ │ │ │ ├── completeorder.cshtml
│ │ │ │ │ ├── orderinfo.cshtml
│ │ │ │ │ ├── orderlist.cshtml
│ │ │ │ │ ├── payorder.cshtml
│ │ │ │ │ ├── printorder.cshtml
│ │ │ │ │ ├── refundlist.cshtml
│ │ │ │ │ ├── sendorderproduct.cshtml
│ │ │ │ │ ├── updateorderdiscount.cshtml
│ │ │ │ │ └── updateordershipfee.cshtml
│ │ │ │ ├── plugin
│ │ │ │ │ ├── config.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── product
│ │ │ │ │ ├── addproduct.cshtml
│ │ │ │ │ ├── addsku.cshtml
│ │ │ │ │ ├── addtimeproduct.cshtml
│ │ │ │ │ ├── editproduct.cshtml
│ │ │ │ │ ├── edittimeproduct.cshtml
│ │ │ │ │ ├── onsaleproductlist.cshtml
│ │ │ │ │ ├── outsaleproductlist.cshtml
│ │ │ │ │ ├── productimagelist.cshtml
│ │ │ │ │ ├── productkeywordlist.cshtml
│ │ │ │ │ ├── recyclebinproductlist.cshtml
│ │ │ │ │ ├── relateproductlist.cshtml
│ │ │ │ │ └── timeproductlist.cshtml
│ │ │ │ ├── productconsult
│ │ │ │ │ ├── addproductconsulttype.cshtml
│ │ │ │ │ ├── editproductconsulttype.cshtml
│ │ │ │ │ ├── productconsultlist.cshtml
│ │ │ │ │ ├── productconsulttypelist.cshtml
│ │ │ │ │ └── reply.cshtml
│ │ │ │ ├── productreview
│ │ │ │ │ ├── productreviewlist.cshtml
│ │ │ │ │ └── productreviewreplylist.cshtml
│ │ │ │ ├── promotion
│ │ │ │ │ ├── addbuysendpromotion.cshtml
│ │ │ │ │ ├── addfullcutpromotion.cshtml
│ │ │ │ │ ├── addfullsendpromotion.cshtml
│ │ │ │ │ ├── addgiftpromotion.cshtml
│ │ │ │ │ ├── addsinglepromotion.cshtml
│ │ │ │ │ ├── addsuitpromotion.cshtml
│ │ │ │ │ ├── buysendproductlist.cshtml
│ │ │ │ │ ├── buysendpromotionlist.cshtml
│ │ │ │ │ ├── editbuysendpromotion.cshtml
│ │ │ │ │ ├── editfullcutpromotion.cshtml
│ │ │ │ │ ├── editfullsendpromotion.cshtml
│ │ │ │ │ ├── editgiftpromotion.cshtml
│ │ │ │ │ ├── editsinglepromotion.cshtml
│ │ │ │ │ ├── editsuitpromotion.cshtml
│ │ │ │ │ ├── fullcutproductlist.cshtml
│ │ │ │ │ ├── fullcutpromotionlist.cshtml
│ │ │ │ │ ├── fullsendproductlist.cshtml
│ │ │ │ │ ├── fullsendpromotionlist.cshtml
│ │ │ │ │ ├── giftlist.cshtml
│ │ │ │ │ ├── giftpromotionlist.cshtml
│ │ │ │ │ ├── singlepromotionlist.cshtml
│ │ │ │ │ ├── suitproductlist.cshtml
│ │ │ │ │ └── suitpromotionlist.cshtml
│ │ │ │ ├── set
│ │ │ │ │ ├── access.cshtml
│ │ │ │ │ ├── account.cshtml
│ │ │ │ │ ├── credit.cshtml
│ │ │ │ │ ├── email.cshtml
│ │ │ │ │ ├── mall.cshtml
│ │ │ │ │ ├── performance.cshtml
│ │ │ │ │ ├── printorder.cshtml
│ │ │ │ │ ├── site.cshtml
│ │ │ │ │ ├── sms.cshtml
│ │ │ │ │ └── upload.cshtml
│ │ │ │ ├── shared
│ │ │ │ │ ├── error.cshtml
│ │ │ │ │ ├── _layout.cshtml
│ │ │ │ │ └── prompt.cshtml
│ │ │ │ ├── shipcompany
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── stat
│ │ │ │ │ ├── clientstat.cshtml
│ │ │ │ │ ├── onlineuserlist.cshtml
│ │ │ │ │ ├── onlineusertrend.cshtml
│ │ │ │ │ ├── productstat.cshtml
│ │ │ │ │ ├── regionstat.cshtml
│ │ │ │ │ ├── salelist.cshtml
│ │ │ │ │ ├── saletrend.cshtml
│ │ │ │ │ └── searchwordstatlist.cshtml
│ │ │ │ ├── store
│ │ │ │ │ ├── addstoreclass.cshtml
│ │ │ │ │ ├── addstore.cshtml
│ │ │ │ │ ├── addstoreshipfee.cshtml
│ │ │ │ │ ├── addstoreshiptemplate.cshtml
│ │ │ │ │ ├── editstoreclass.cshtml
│ │ │ │ │ ├── editstore.cshtml
│ │ │ │ │ ├── editstorekeeper.cshtml
│ │ │ │ │ ├── editstoreshipfee.cshtml
│ │ │ │ │ ├── editstoreshiptemplate.cshtml
│ │ │ │ │ ├── setstoreadminer.cshtml
│ │ │ │ │ ├── storeclasslist.cshtml
│ │ │ │ │ ├── storelist.cshtml
│ │ │ │ │ ├── storeshipfeelist.cshtml
│ │ │ │ │ └── storeshiptemplatelist.cshtml
│ │ │ │ ├── storeindustry
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── storerank
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── topic
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── user
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── userrank
│ │ │ │ │ ├── add.cshtml
│ │ │ │ │ ├── edit.cshtml
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── _ViewStart.cshtml
│ │ │ │ └── Web.config
│ │ │ ├── Web.config
│ │ │ └── Web.linux.config
│ │ ├── admin_store
│ │ │ ├── AreaRegistration.cs
│ │ │ ├── BrnMall.Web.StoreAdmin.csproj
│ │ │ ├── BrnMall.Web.StoreAdmin.csproj.user
│ │ │ ├── content
│ │ │ │ ├── css
│ │ │ │ │ ├── site.css
│ │ │ │ │ └── uploadify.css
│ │ │ │ ├── flashes
│ │ │ │ │ └── uploadify.swf
│ │ │ │ ├── images
│ │ │ │ │ ├── add.jpg
│ │ │ │ │ ├── a.jpg
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── bottombg.jpg
│ │ │ │ │ ├── bt_right.jpg
│ │ │ │ │ ├── cancel.jpg
│ │ │ │ │ ├── delete2.gif
│ │ │ │ │ ├── delete.jpg
│ │ │ │ │ ├── edit.jpg
│ │ │ │ │ ├── goback.jpg
│ │ │ │ │ ├── ico1.jpg
│ │ │ │ │ ├── li1.jpg
│ │ │ │ │ ├── li.jpg
│ │ │ │ │ ├── logo.jpg
│ │ │ │ │ ├── menubg_bottom.jpg
│ │ │ │ │ ├── menubg.jpg
│ │ │ │ │ ├── menubg_top.jpg
│ │ │ │ │ ├── menuli_bg_hot.jpg
│ │ │ │ │ ├── menuli_bg.jpg
│ │ │ │ │ ├── nav_bg_hot.jpg
│ │ │ │ │ ├── progressbar.gif
│ │ │ │ │ ├── refresh.jpg
│ │ │ │ │ ├── right_ico.jpg
│ │ │ │ │ ├── search1.gif
│ │ │ │ │ ├── selectbg.gif
│ │ │ │ │ ├── selectbgico.gif
│ │ │ │ │ ├── s.jpg
│ │ │ │ │ ├── submit.jpg
│ │ │ │ │ ├── tagbg.jpg
│ │ │ │ │ ├── tagbg-left.jpg
│ │ │ │ │ ├── tip.gif
│ │ │ │ │ ├── top_bg.jpg
│ │ │ │ │ ├── tree_close.gif
│ │ │ │ │ ├── tree_open.gif
│ │ │ │ │ └── uploadify-cancel.png
│ │ │ │ ├── jbox
│ │ │ │ │ ├── jquery.jBox-2.3.min.js
│ │ │ │ │ └── Skins
│ │ │ │ │ └── Default
│ │ │ │ │ ├── Desktop.ini
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── jbox-button1.png
│ │ │ │ │ │ ├── jbox-button2.png
│ │ │ │ │ │ ├── jbox-close1.gif
│ │ │ │ │ │ ├── jbox-close2.gif
│ │ │ │ │ │ ├── jbox-content-loading.gif
│ │ │ │ │ │ ├── jbox-icons-ie6.gif
│ │ │ │ │ │ ├── jbox-icons.png
│ │ │ │ │ │ ├── jbox-loading1.gif
│ │ │ │ │ │ ├── jbox-loading2.gif
│ │ │ │ │ │ ├── jbox-loading3.gif
│ │ │ │ │ │ └── jbox-title-icon.gif
│ │ │ │ │ └── jbox.css
│ │ │ │ ├── my97datepicker
│ │ │ │ │ ├── calendar.js
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ ├── My97DatePicker.htm
│ │ │ │ │ ├── skin
│ │ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ └── img.gif
│ │ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ │ └── whyGreen
│ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ └── img.gif
│ │ │ │ │ └── WdatePicker.js
│ │ │ │ └── ueditor
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ └── anchor.html
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── internal.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.html
│ │ │ │ │ └── table
│ │ │ │ │ ├── dragicon.png
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── lang
│ │ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── themes
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ └── iframe.css
│ │ │ │ ├── third-party
│ │ │ │ │ ├── codemirror
│ │ │ │ │ │ ├── codemirror.css
│ │ │ │ │ │ └── codemirror.js
│ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ │ └── shCore.js
│ │ │ │ │ ├── webuploader
│ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ ├── webuploader.js
│ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ └── zeroclipboard
│ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ ├── ueditor.all.js
│ │ │ │ ├── ueditor.config.js
│ │ │ │ └── ueditor.parse.js
│ │ │ ├── controllers
│ │ │ │ ├── BrandController.cs
│ │ │ │ ├── CategoryController.cs
│ │ │ │ ├── CouponController.cs
│ │ │ │ ├── HomeController.cs
│ │ │ │ ├── OrderController.cs
│ │ │ │ ├── ProductConsultController.cs
│ │ │ │ ├── ProductController.cs
│ │ │ │ ├── ProductReviewController.cs
│ │ │ │ ├── PromotionController.cs
│ │ │ │ ├── ShipCompanyController.cs
│ │ │ │ ├── StoreController.cs
│ │ │ │ └── ToolController.cs
│ │ │ ├── models
│ │ │ │ ├── CouponModel.cs
│ │ │ │ ├── HomeModel.cs
│ │ │ │ ├── OrderModel.cs
│ │ │ │ ├── ProductConsultModel.cs
│ │ │ │ ├── ProductModel.cs
│ │ │ │ ├── ProductReviewModel.cs
│ │ │ │ ├── PromotionModel.cs
│ │ │ │ └── StoreModel.cs
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── BrnMall.Web.StoreAdmin.csproj.FileListAbsolute.txt
│ │ │ │ │ ├── BrnMall.Web.StoreAdmin.dll
│ │ │ │ │ ├── BrnMall.Web.StoreAdmin.pdb
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── BrnMall.Web.StoreAdmin.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.Web.StoreAdmin.dll
│ │ │ │ ├── BrnMall.Web.StoreAdmin.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── scripts
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jquery.uploadify.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ │ ├── product.js
│ │ │ │ ├── region.js
│ │ │ │ ├── selectlist.js
│ │ │ │ └── showlist.js
│ │ │ ├── views
│ │ │ │ ├── coupon
│ │ │ │ │ ├── addcoupontype.cshtml
│ │ │ │ │ ├── couponlist.cshtml
│ │ │ │ │ ├── couponproductlist.cshtml
│ │ │ │ │ ├── coupontypelist.cshtml
│ │ │ │ │ ├── sendcoupon.cshtml
│ │ │ │ │ └── showcoupontype.cshtml
│ │ │ │ ├── home
│ │ │ │ │ ├── index.cshtml
│ │ │ │ │ ├── menu.cshtml
│ │ │ │ │ ├── navbar.cshtml
│ │ │ │ │ └── storeruninfo.cshtml
│ │ │ │ ├── order
│ │ │ │ │ ├── completeorder.cshtml
│ │ │ │ │ ├── orderinfo.cshtml
│ │ │ │ │ ├── orderlist.cshtml
│ │ │ │ │ ├── payorder.cshtml
│ │ │ │ │ ├── printorder.cshtml
│ │ │ │ │ ├── refundlist.cshtml
│ │ │ │ │ ├── sendorderproduct.cshtml
│ │ │ │ │ ├── updateorderdiscount.cshtml
│ │ │ │ │ └── updateordershipfee.cshtml
│ │ │ │ ├── product
│ │ │ │ │ ├── addproduct.cshtml
│ │ │ │ │ ├── addsku.cshtml
│ │ │ │ │ ├── addtimeproduct.cshtml
│ │ │ │ │ ├── editproduct.cshtml
│ │ │ │ │ ├── edittimeproduct.cshtml
│ │ │ │ │ ├── onsaleproductlist.cshtml
│ │ │ │ │ ├── outsaleproductlist.cshtml
│ │ │ │ │ ├── productimagelist.cshtml
│ │ │ │ │ ├── productkeywordlist.cshtml
│ │ │ │ │ ├── recyclebinproductlist.cshtml
│ │ │ │ │ ├── relateproductlist.cshtml
│ │ │ │ │ └── timeproductlist.cshtml
│ │ │ │ ├── productconsult
│ │ │ │ │ ├── productconsultlist.cshtml
│ │ │ │ │ └── reply.cshtml
│ │ │ │ ├── productreview
│ │ │ │ │ ├── productreviewlist.cshtml
│ │ │ │ │ └── productreviewreplylist.cshtml
│ │ │ │ ├── promotion
│ │ │ │ │ ├── addbuysendpromotion.cshtml
│ │ │ │ │ ├── addfullcutpromotion.cshtml
│ │ │ │ │ ├── addfullsendpromotion.cshtml
│ │ │ │ │ ├── addgiftpromotion.cshtml
│ │ │ │ │ ├── addsinglepromotion.cshtml
│ │ │ │ │ ├── addsuitpromotion.cshtml
│ │ │ │ │ ├── buysendproductlist.cshtml
│ │ │ │ │ ├── buysendpromotionlist.cshtml
│ │ │ │ │ ├── editbuysendpromotion.cshtml
│ │ │ │ │ ├── editfullcutpromotion.cshtml
│ │ │ │ │ ├── editfullsendpromotion.cshtml
│ │ │ │ │ ├── editgiftpromotion.cshtml
│ │ │ │ │ ├── editsinglepromotion.cshtml
│ │ │ │ │ ├── editsuitpromotion.cshtml
│ │ │ │ │ ├── fullcutproductlist.cshtml
│ │ │ │ │ ├── fullcutpromotionlist.cshtml
│ │ │ │ │ ├── fullsendproductlist.cshtml
│ │ │ │ │ ├── fullsendpromotionlist.cshtml
│ │ │ │ │ ├── giftlist.cshtml
│ │ │ │ │ ├── giftpromotionlist.cshtml
│ │ │ │ │ ├── singlepromotionlist.cshtml
│ │ │ │ │ ├── suitproductlist.cshtml
│ │ │ │ │ └── suitpromotionlist.cshtml
│ │ │ │ ├── shared
│ │ │ │ │ ├── error.cshtml
│ │ │ │ │ ├── _layout.cshtml
│ │ │ │ │ └── prompt.cshtml
│ │ │ │ ├── store
│ │ │ │ │ ├── addstoreclass.cshtml
│ │ │ │ │ ├── addstoreshipfee.cshtml
│ │ │ │ │ ├── addstoreshiptemplate.cshtml
│ │ │ │ │ ├── editstoreclass.cshtml
│ │ │ │ │ ├── editstore.cshtml
│ │ │ │ │ ├── editstoreshipfee.cshtml
│ │ │ │ │ ├── editstoreshiptemplate.cshtml
│ │ │ │ │ ├── storeclasslist.cshtml
│ │ │ │ │ ├── storeshipfeelist.cshtml
│ │ │ │ │ └── storeshiptemplatelist.cshtml
│ │ │ │ ├── _ViewStart.cshtml
│ │ │ │ └── Web.config
│ │ │ ├── Web.config
│ │ │ └── Web.linux.config
│ │ ├── App_Data
│ │ │ ├── credit.config
│ │ │ ├── email.config
│ │ │ ├── event.config
│ │ │ ├── ExLogs
│ │ │ │ ├── 20140908.log
│ │ │ │ ├── 20141006.log
│ │ │ │ ├── 20141012.log
│ │ │ │ ├── 20141013.log
│ │ │ │ ├── 20141031.log
│ │ │ │ ├── 20141101.log
│ │ │ │ ├── 20141102.log
│ │ │ │ ├── 20141104.log
│ │ │ │ ├── 20141106.log
│ │ │ │ ├── 20141113.log
│ │ │ │ ├── 20141114.log
│ │ │ │ ├── 20141125.log
│ │ │ │ ├── 20141126.log
│ │ │ │ ├── 20141128.log
│ │ │ │ ├── 20141129.log
│ │ │ │ ├── 20141130.log
│ │ │ │ ├── 20141201.log
│ │ │ │ ├── 20141202.log
│ │ │ │ ├── 20141203.log
│ │ │ │ ├── 20141204.log
│ │ │ │ ├── 20141205.log
│ │ │ │ ├── 20141207.log
│ │ │ │ ├── 20141208.log
│ │ │ │ ├── 20141209.log
│ │ │ │ ├── 20141218.log
│ │ │ │ ├── 20141220.log
│ │ │ │ ├── 20141221.log
│ │ │ │ ├── 20141222.log
│ │ │ │ ├── 20141223.log
│ │ │ │ ├── 20141224.log
│ │ │ │ ├── 20141225.log
│ │ │ │ ├── 20141228.log
│ │ │ │ ├── 20150101.log
│ │ │ │ ├── 20150105.log
│ │ │ │ ├── 20150106.log
│ │ │ │ ├── 20150109.log
│ │ │ │ └── 20150124.log
│ │ │ ├── installedplugin.config
│ │ │ ├── ipdata.config
│ │ │ ├── mall.config
│ │ │ ├── memcachedcache.config
│ │ │ ├── memcachedcart.config
│ │ │ ├── memcachedsession.config
│ │ │ ├── rabbitmqorder.config
│ │ │ ├── rdbs.config
│ │ │ ├── rdbs.config.bak
│ │ │ ├── redisnosql.config
│ │ │ └── sms.config
│ │ ├── bin
│ │ │ ├── BrnMall.AsynStrategy.ThreadPool.dll
│ │ │ ├── BrnMall.AsynStrategy.ThreadPool.pdb
│ │ │ ├── BrnMall.CacheStrategy.AspNet.dll
│ │ │ ├── BrnMall.CacheStrategy.AspNet.pdb
│ │ │ ├── BrnMall.CartStrategy.SqlServer.dll
│ │ │ ├── BrnMall.CartStrategy.SqlServer.pdb
│ │ │ ├── BrnMall.ConfigStrategy.File.dll
│ │ │ ├── BrnMall.ConfigStrategy.File.pdb
│ │ │ ├── BrnMall.Core.dll
│ │ │ ├── BrnMall.Core.pdb
│ │ │ ├── BrnMall.Data.dll
│ │ │ ├── BrnMall.Data.pdb
│ │ │ ├── BrnMall.EmailStrategy.DotNet.dll
│ │ │ ├── BrnMall.EmailStrategy.DotNet.pdb
│ │ │ ├── BrnMall.EventStrategy.Timer.dll
│ │ │ ├── BrnMall.EventStrategy.Timer.pdb
│ │ │ ├── BrnMall.OrderStrategy.SqlServer.dll
│ │ │ ├── BrnMall.OrderStrategy.SqlServer.pdb
│ │ │ ├── BrnMall.RandomStrategy.BrnMall.dll
│ │ │ ├── BrnMall.RandomStrategy.BrnMall.pdb
│ │ │ ├── BrnMall.RDBSStrategy.SqlServer.dll
│ │ │ ├── BrnMall.RDBSStrategy.SqlServer.pdb
│ │ │ ├── BrnMall.SearchStrategy.SqlServer.dll
│ │ │ ├── BrnMall.SearchStrategy.SqlServer.pdb
│ │ │ ├── BrnMall.Services.dll
│ │ │ ├── BrnMall.Services.pdb
│ │ │ ├── BrnMall.SessionStrategy.AspNetCache.dll
│ │ │ ├── BrnMall.SessionStrategy.AspNetCache.pdb
│ │ │ ├── BrnMall.SMSStrategy.BrnMall.dll
│ │ │ ├── BrnMall.SMSStrategy.BrnMall.pdb
│ │ │ ├── BrnMall.Web.dll
│ │ │ ├── BrnMall.Web.dll.config
│ │ │ ├── BrnMall.Web.Framework.dll
│ │ │ ├── BrnMall.Web.Framework.pdb
│ │ │ ├── BrnMall.Web.MallAdmin.dll
│ │ │ ├── BrnMall.Web.MallAdmin.pdb
│ │ │ ├── BrnMall.Web.Mobile.dll
│ │ │ ├── BrnMall.Web.Mobile.pdb
│ │ │ ├── BrnMall.Web.pdb
│ │ │ ├── BrnMall.Web.StoreAdmin.dll
│ │ │ ├── BrnMall.Web.StoreAdmin.pdb
│ │ │ ├── Microsoft.Web.Infrastructure.dll
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.WebPages.dll
│ │ │ └── System.Web.WebPages.Razor.dll
│ │ ├── BrnMall.Web.csproj
│ │ ├── BrnMall.Web.csproj.bak
│ │ ├── BrnMall.Web.csproj.user
│ │ ├── BrnMall.Web.idc
│ │ ├── controllers
│ │ │ ├── AccountController.cs
│ │ │ ├── CartController.cs
│ │ │ ├── CatalogController.cs
│ │ │ ├── CouponController.cs
│ │ │ ├── HelpController.cs
│ │ │ ├── HomeController.cs
│ │ │ ├── NewsController.cs
│ │ │ ├── OrderController.cs
│ │ │ ├── StoreController.cs
│ │ │ ├── ToolController.cs
│ │ │ └── UCenterController.cs
│ │ ├── css
│ │ │ ├── account.css
│ │ │ ├── base.css
│ │ │ ├── buy.css
│ │ │ ├── content.css
│ │ │ ├── help.css
│ │ │ ├── home.css
│ │ │ ├── list.css
│ │ │ └── ucenter.css
│ │ ├── Global.asax
│ │ ├── Global.asax.cs
│ │ ├── images
│ │ │ ├── 20130603A.png
│ │ │ ├── bgW.jpg
│ │ │ ├── bottomBg.jpg
│ │ │ ├── bottomLogo.jpg
│ │ │ ├── buy1.png
│ │ │ ├── buy.png
│ │ │ ├── categorys.jpg
│ │ │ ├── deng.png
│ │ │ ├── d.png
│ │ │ ├── du.gif
│ │ │ ├── floorB.gif
│ │ │ ├── gonggao.jpg
│ │ │ ├── guanzhu.png
│ │ │ ├── helpcenter_icon1.gif
│ │ │ ├── helpcenter_icon2.gif
│ │ │ ├── help_leftsz.gif
│ │ │ ├── i.gif
│ │ │ ├── itab3.gif
│ │ │ ├── jia.png
│ │ │ ├── jz.gif
│ │ │ ├── ljjs.jpg
│ │ │ ├── loading.gif
│ │ │ ├── lock.jpg
│ │ │ ├── logo.jpg
│ │ │ ├── logo.png
│ │ │ ├── lr.jpg
│ │ │ ├── lrS.jpg
│ │ │ ├── m.jpg
│ │ │ ├── newpp.png
│ │ │ ├── noBuy.png
│ │ │ ├── ok.gif
│ │ │ ├── p.jpg
│ │ │ ├── power_cx.png
│ │ │ ├── power_jy.gif
│ │ │ ├── power_kx.gif
│ │ │ ├── power_wj.png
│ │ │ ├── shoppingNone.gif
│ │ │ ├── shopping.png
│ │ │ ├── succ-error.png
│ │ │ ├── succ-ico.png
│ │ │ ├── succ-ok.png
│ │ │ ├── tb.png
│ │ │ ├── tip.png
│ │ │ ├── tj.jpg
│ │ │ ├── u.png
│ │ │ ├── user-avatar.gif
│ │ │ ├── userIMG-bg.png
│ │ │ ├── userSJ.png
│ │ │ └── zoomloader.gif
│ │ ├── mobile
│ │ │ ├── AreaRegistration.cs
│ │ │ ├── BrnMall.Web.Mobile.csproj
│ │ │ ├── BrnMall.Web.Mobile.csproj.user
│ │ │ ├── controllers
│ │ │ │ ├── AccountController.cs
│ │ │ │ ├── CartController.cs
│ │ │ │ ├── CatalogController.cs
│ │ │ │ ├── CategoryController.cs
│ │ │ │ ├── CouponController.cs
│ │ │ │ ├── HomeController.cs
│ │ │ │ ├── OrderController.cs
│ │ │ │ ├── StoreController.cs
│ │ │ │ ├── ToolController.cs
│ │ │ │ └── UCenterController.cs
│ │ │ ├── css
│ │ │ │ ├── account.css
│ │ │ │ ├── base.css
│ │ │ │ ├── buy.css
│ │ │ │ ├── content.css
│ │ │ │ ├── home.css
│ │ │ │ ├── list.css
│ │ │ │ ├── store.css
│ │ │ │ └── ucenter.css
│ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── bg_line.png
│ │ │ │ ├── card-border.png
│ │ │ │ ├── cartNull.png
│ │ │ │ ├── change.png
│ │ │ │ ├── checked.png
│ │ │ │ ├── check.png
│ │ │ │ ├── del2.png
│ │ │ │ ├── del.png
│ │ │ │ ├── home-icons.png
│ │ │ │ ├── icon10.png
│ │ │ │ ├── icon11.png
│ │ │ │ ├── icon12.png
│ │ │ │ ├── icon13.png
│ │ │ │ ├── icon14.png
│ │ │ │ ├── icon18.png
│ │ │ │ ├── icon19.png
│ │ │ │ ├── icon20.png
│ │ │ │ ├── icon21.png
│ │ │ │ ├── icon23.png
│ │ │ │ ├── icon24.png
│ │ │ │ ├── icon29.png
│ │ │ │ ├── icon2b.png
│ │ │ │ ├── icon2.png
│ │ │ │ ├── icon37.png
│ │ │ │ ├── icon3.png
│ │ │ │ ├── icon4.png
│ │ │ │ ├── icon5.png
│ │ │ │ ├── icon9.png
│ │ │ │ ├── icon_detail.png
│ │ │ │ ├── icon_heart.png
│ │ │ │ ├── icon_order.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── icon_pop_star2.png
│ │ │ │ ├── icon_slid.png
│ │ │ │ ├── icon_star2.png
│ │ │ │ ├── icon_star3.png
│ │ │ │ ├── icon_suc.png
│ │ │ │ ├── line2.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── memberBg.png
│ │ │ │ ├── member-icons.png
│ │ │ │ ├── member.png
│ │ │ │ ├── msj.jpg
│ │ │ │ ├── radio1.png
│ │ │ │ ├── radio.png
│ │ │ │ ├── yhj-2.png
│ │ │ │ ├── yhj-line1.png
│ │ │ │ ├── yhj-line.png
│ │ │ │ └── yhj.png
│ │ │ ├── models
│ │ │ │ ├── AccountModel.cs
│ │ │ │ ├── CartModel.cs
│ │ │ │ ├── CatalogModel.cs
│ │ │ │ ├── CategoryModel.cs
│ │ │ │ ├── OrderModel.cs
│ │ │ │ ├── StoreModel.cs
│ │ │ │ └── UCenterModel.cs
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── BrnMall.Web.Mobile.csproj.FileListAbsolute.txt
│ │ │ │ │ ├── BrnMall.Web.Mobile.dll
│ │ │ │ │ ├── BrnMall.Web.Mobile.pdb
│ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── Release
│ │ │ │ ├── BrnMall.Web.Mobile.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.Web.Mobile.dll
│ │ │ │ ├── BrnMall.Web.Mobile.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── scripts
│ │ │ │ ├── account.js
│ │ │ │ ├── cart.js
│ │ │ │ ├── common.js
│ │ │ │ ├── order.js
│ │ │ │ ├── product.js
│ │ │ │ ├── region.js
│ │ │ │ ├── ucenter.order.js
│ │ │ │ ├── ucenter.safe.js
│ │ │ │ ├── ucenter.user.js
│ │ │ │ └── utils.js
│ │ │ ├── views
│ │ │ │ ├── account
│ │ │ │ │ ├── findpwd.cshtml
│ │ │ │ │ ├── login.cshtml
│ │ │ │ │ ├── register.cshtml
│ │ │ │ │ ├── resetpwd.cshtml
│ │ │ │ │ └── selectfindpwdtype.cshtml
│ │ │ │ ├── cart
│ │ │ │ │ ├── ajaxindex.cshtml
│ │ │ │ │ └── index.cshtml
│ │ │ │ ├── catalog
│ │ │ │ │ ├── category.cshtml
│ │ │ │ │ ├── productconsultlist.cshtml
│ │ │ │ │ ├── product.cshtml
│ │ │ │ │ ├── productdetails.cshtml
│ │ │ │ │ ├── productreviewlist.cshtml
│ │ │ │ │ ├── productsuitlist.cshtml
│ │ │ │ │ └── search.cshtml
│ │ │ │ ├── category
│ │ │ │ │ └── list.cshtml
│ │ │ │ ├── home
│ │ │ │ │ └── index.cshtml
│ │ │ │ ├── order
│ │ │ │ │ ├── confirmorder.cshtml
│ │ │ │ │ ├── payresult.cshtml
│ │ │ │ │ ├── payshow.cshtml
│ │ │ │ │ └── submitresult.cshtml
│ │ │ │ ├── shared
│ │ │ │ │ ├── 404.cshtml
│ │ │ │ │ ├── error.cshtml
│ │ │ │ │ ├── _layout.cshtml
│ │ │ │ │ └── prompt.cshtml
│ │ │ │ ├── store
│ │ │ │ │ ├── class.cshtml
│ │ │ │ │ ├── coupontypelist.cshtml
│ │ │ │ │ ├── index.cshtml
│ │ │ │ │ └── search.cshtml
│ │ │ │ ├── ucenter
│ │ │ │ │ ├── account.cshtml
│ │ │ │ │ ├── addshipaddress.cshtml
│ │ │ │ │ ├── couponlist.cshtml
│ │ │ │ │ ├── editshipaddress.cshtml
│ │ │ │ │ ├── index.cshtml
│ │ │ │ │ ├── orderactionlist.cshtml
│ │ │ │ │ ├── orderinfo.cshtml
│ │ │ │ │ ├── orderlist.cshtml
│ │ │ │ │ ├── paycredit.cshtml
│ │ │ │ │ ├── revieworder.cshtml
│ │ │ │ │ ├── safesuccess.cshtml
│ │ │ │ │ ├── safeupdate.cshtml
│ │ │ │ │ ├── safeverify.cshtml
│ │ │ │ │ └── shipaddresslist.cshtml
│ │ │ │ ├── _ViewStart.cshtml
│ │ │ │ └── Web.config
│ │ │ ├── Web.config
│ │ │ └── Web.linux.config
│ │ ├── models
│ │ │ ├── AccountModel.cs
│ │ │ ├── CartModel.cs
│ │ │ ├── CatalogModel.cs
│ │ │ ├── HelpModel.cs
│ │ │ ├── NewsModel.cs
│ │ │ ├── OrderModel.cs
│ │ │ ├── StoreModel.cs
│ │ │ └── UCenterModel.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.Web.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.Web.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.Web.dll
│ │ │ │ ├── BrnMall.Web.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.Web.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.Web.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.Web.dll
│ │ │ ├── BrnMall.Web.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── plugins
│ │ │ ├── BrnMall.OAuthPlugin.QQ
│ │ │ │ ├── BrnMall.OAuthPlugin.QQ.dll
│ │ │ │ ├── BrnMall.OAuthPlugin.QQ.pdb
│ │ │ │ ├── db.config
│ │ │ │ ├── fastJSON.dll
│ │ │ │ ├── plugin.config
│ │ │ │ └── views
│ │ │ │ └── adminqqoauth
│ │ │ │ └── config.cshtml
│ │ │ ├── BrnMall.PayPlugin.Alipay
│ │ │ │ ├── BrnMall.PayPlugin.Alipay.dll
│ │ │ │ ├── BrnMall.PayPlugin.Alipay.pdb
│ │ │ │ ├── db.config
│ │ │ │ ├── plugin.config
│ │ │ │ └── views
│ │ │ │ ├── adminalipay
│ │ │ │ │ └── config.cshtml
│ │ │ │ └── show.cshtml
│ │ │ ├── BrnMall.PayPlugin.ChinaBank
│ │ │ │ ├── BrnMall.PayPlugin.ChinaBank.dll
│ │ │ │ ├── BrnMall.PayPlugin.ChinaBank.pdb
│ │ │ │ ├── db.config
│ │ │ │ ├── plugin.config
│ │ │ │ └── views
│ │ │ │ ├── adminchinabank
│ │ │ │ │ └── config.cshtml
│ │ │ │ └── show.cshtml
│ │ │ ├── BrnMall.PayPlugin.COD
│ │ │ │ ├── BrnMall.PayPlugin.COD.dll
│ │ │ │ ├── BrnMall.PayPlugin.COD.pdb
│ │ │ │ ├── db.config
│ │ │ │ ├── plugin.config
│ │ │ │ └── views
│ │ │ │ └── admincod
│ │ │ │ └── config.cshtml
│ │ │ ├── BrnMall.PayPlugin.EMSRemit
│ │ │ │ ├── BrnMall.PayPlugin.EMSRemit.dll
│ │ │ │ ├── BrnMall.PayPlugin.EMSRemit.pdb
│ │ │ │ ├── db.config
│ │ │ │ ├── plugin.config
│ │ │ │ └── views
│ │ │ │ └── adminemsremit
│ │ │ │ └── config.cshtml
│ │ │ ├── BrnMall.PayPlugin.Tenpay
│ │ │ │ ├── BrnMall.PayPlugin.Tenpay.dll
│ │ │ │ ├── BrnMall.PayPlugin.Tenpay.pdb
│ │ │ │ ├── db.config
│ │ │ │ ├── plugin.config
│ │ │ │ └── views
│ │ │ │ ├── admintenpay
│ │ │ │ │ └── config.cshtml
│ │ │ │ └── show.cshtml
│ │ │ └── Web.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── robots.txt
│ │ ├── scripts
│ │ │ ├── account.js
│ │ │ ├── common.js
│ │ │ ├── DD_belatedPNG.js
│ │ │ ├── dialog.js
│ │ │ ├── magiczoom
│ │ │ │ ├── graphics
│ │ │ │ │ ├── hint.gif
│ │ │ │ │ └── loader.gif
│ │ │ │ ├── magiczoom.css
│ │ │ │ └── magiczoom.js
│ │ │ ├── MSClass.js
│ │ │ ├── order.js
│ │ │ ├── product.js
│ │ │ ├── region.js
│ │ │ ├── ucenter.order.js
│ │ │ ├── ucenter.safe.js
│ │ │ ├── ucenter.user.js
│ │ │ └── utils.js
│ │ ├── themes
│ │ │ └── default
│ │ │ ├── theme.png
│ │ │ ├── theme.xml
│ │ │ └── views
│ │ │ ├── class.cshtml
│ │ │ ├── details.cshtml
│ │ │ ├── index.cshtml
│ │ │ ├── search.cshtml
│ │ │ └── Web.config
│ │ ├── upload
│ │ │ ├── advert
│ │ │ │ ├── ad_1411271729304777423.png
│ │ │ │ ├── ad_1412061202497669334.jpg
│ │ │ │ ├── ad_1412061203109771466.jpg
│ │ │ │ ├── ad_1412061203276390996.jpg
│ │ │ │ ├── ad_1412061203508484271.jpg
│ │ │ │ ├── ad_1412061209049383920.jpg
│ │ │ │ ├── ad_1412061209297858132.jpg
│ │ │ │ ├── ad_1412061210075889754.jpg
│ │ │ │ ├── ad_1412061214046455343.jpg
│ │ │ │ ├── ad_1412061215331265951.jpg
│ │ │ │ ├── ad_1412061322128753676.jpg
│ │ │ │ ├── ad_1412061324309252636.jpg
│ │ │ │ ├── ad_1412061325519929004.jpg
│ │ │ │ ├── ad_1412061326310861365.jpg
│ │ │ │ ├── ad_1412061332551381030.jpg
│ │ │ │ ├── ad_1412201201199038431.jpg
│ │ │ │ ├── ad_1412201201442782373.jpg
│ │ │ │ ├── ad_1412201201594621057.jpg
│ │ │ │ ├── ad_1412201202184881940.jpg
│ │ │ │ ├── ad_1412201203308643336.jpg
│ │ │ │ ├── ad_1412201203526375790.jpg
│ │ │ │ ├── ad_1412201204125747193.jpg
│ │ │ │ ├── ad_1412201204515649494.jpg
│ │ │ │ ├── ad_1412201205528674557.png
│ │ │ │ ├── ad_1412201206375560118.png
│ │ │ │ ├── ad_1412201207066766774.png
│ │ │ │ ├── ad_1412201207310680725.png
│ │ │ │ └── ad_1412201208588830952.jpg
│ │ │ ├── banner
│ │ │ │ ├── fr_1412061404419541666.jpg
│ │ │ │ ├── fr_1412061404492825858.jpg
│ │ │ │ ├── fr_1412061404554409380.jpg
│ │ │ │ ├── fr_1412061405306289506.jpg
│ │ │ │ ├── fr_1412201036420464063.jpg
│ │ │ │ ├── fr_1412201037096779867.jpg
│ │ │ │ └── fr_1412201037338523694.jpg
│ │ │ ├── brand
│ │ │ │ ├── source
│ │ │ │ │ ├── b_1412061057569572774.jpg
│ │ │ │ │ ├── b_1412061058054907655.jpg
│ │ │ │ │ ├── b_1412061059012279535.jpg
│ │ │ │ │ ├── b_1412061059095474294.jpg
│ │ │ │ │ ├── b_1412061241241313075.jpg
│ │ │ │ │ ├── b_1412061245204788258.jpg
│ │ │ │ │ ├── b_1412061247532925662.jpg
│ │ │ │ │ ├── b_1412061253249565363.jpg
│ │ │ │ │ ├── b_1412061256430488666.jpg
│ │ │ │ │ ├── b_1412061300257366036.jpg
│ │ │ │ │ └── b_1412061302042832401.jpg
│ │ │ │ ├── thumb100_100
│ │ │ │ │ ├── b_1412061057569572774.jpg
│ │ │ │ │ ├── b_1412061058054907655.jpg
│ │ │ │ │ ├── b_1412061059012279535.jpg
│ │ │ │ │ ├── b_1412061059095474294.jpg
│ │ │ │ │ ├── b_1412061241241313075.jpg
│ │ │ │ │ ├── b_1412061245204788258.jpg
│ │ │ │ │ ├── b_1412061247532925662.jpg
│ │ │ │ │ ├── b_1412061253249565363.jpg
│ │ │ │ │ ├── b_1412061256430488666.jpg
│ │ │ │ │ ├── b_1412061300257366036.jpg
│ │ │ │ │ └── b_1412061302042832401.jpg
│ │ │ │ ├── thumb50_50
│ │ │ │ │ ├── b_1412061057569572774.jpg
│ │ │ │ │ ├── b_1412061058054907655.jpg
│ │ │ │ │ ├── b_1412061059012279535.jpg
│ │ │ │ │ ├── b_1412061059095474294.jpg
│ │ │ │ │ ├── b_1412061241241313075.jpg
│ │ │ │ │ ├── b_1412061245204788258.jpg
│ │ │ │ │ ├── b_1412061247532925662.jpg
│ │ │ │ │ ├── b_1412061253249565363.jpg
│ │ │ │ │ ├── b_1412061256430488666.jpg
│ │ │ │ │ ├── b_1412061300257366036.jpg
│ │ │ │ │ └── b_1412061302042832401.jpg
│ │ │ │ └── thumb70_70
│ │ │ │ ├── b_1412061057569572774.jpg
│ │ │ │ ├── b_1412061058054907655.jpg
│ │ │ │ ├── b_1412061059012279535.jpg
│ │ │ │ ├── b_1412061059095474294.jpg
│ │ │ │ ├── b_1412061241241313075.jpg
│ │ │ │ ├── b_1412061245204788258.jpg
│ │ │ │ ├── b_1412061247532925662.jpg
│ │ │ │ ├── b_1412061253249565363.jpg
│ │ │ │ ├── b_1412061256430488666.jpg
│ │ │ │ ├── b_1412061300257366036.jpg
│ │ │ │ └── b_1412061302042832401.jpg
│ │ │ └── store
│ │ │ ├── 2
│ │ │ │ └── product
│ │ │ │ └── show
│ │ │ │ ├── source
│ │ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ │ ├── thumb100_100
│ │ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ │ ├── thumb190_190
│ │ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ │ ├── thumb230_230
│ │ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ │ ├── thumb300_300
│ │ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ │ ├── thumb350_350
│ │ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ │ ├── thumb60_60
│ │ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ │ └── thumb800_800
│ │ │ │ ├── ps_1412061046569685283.jpg
│ │ │ │ ├── ps_1412061047426471409.jpg
│ │ │ │ ├── ps_1412061048087846359.jpg
│ │ │ │ ├── ps_1412061049009606202.jpg
│ │ │ │ ├── ps_1412061242462730057.jpg
│ │ │ │ ├── ps_1412061246051573813.jpg
│ │ │ │ ├── ps_1412061248425483835.jpg
│ │ │ │ └── ps_1412061254171825235.jpg
│ │ │ └── 3
│ │ │ └── product
│ │ │ └── show
│ │ │ ├── source
│ │ │ │ ├── ps_1412061257335587556.jpg
│ │ │ │ ├── ps_1412061259016857962.jpg
│ │ │ │ ├── ps_1412061301081310284.jpg
│ │ │ │ └── ps_1412061302449755676.jpg
│ │ │ ├── thumb100_100
│ │ │ │ ├── ps_1412061257335587556.jpg
│ │ │ │ ├── ps_1412061259016857962.jpg
│ │ │ │ ├── ps_1412061301081310284.jpg
│ │ │ │ └── ps_1412061302449755676.jpg
│ │ │ ├── thumb190_190
│ │ │ │ ├── ps_1412061257335587556.jpg
│ │ │ │ ├── ps_1412061259016857962.jpg
│ │ │ │ ├── ps_1412061301081310284.jpg
│ │ │ │ └── ps_1412061302449755676.jpg
│ │ │ ├── thumb230_230
│ │ │ │ ├── ps_1412061257335587556.jpg
│ │ │ │ ├── ps_1412061259016857962.jpg
│ │ │ │ ├── ps_1412061301081310284.jpg
│ │ │ │ └── ps_1412061302449755676.jpg
│ │ │ ├── thumb300_300
│ │ │ │ ├── ps_1412061257335587556.jpg
│ │ │ │ ├── ps_1412061259016857962.jpg
│ │ │ │ ├── ps_1412061301081310284.jpg
│ │ │ │ └── ps_1412061302449755676.jpg
│ │ │ ├── thumb350_350
│ │ │ │ ├── ps_1412061257335587556.jpg
│ │ │ │ ├── ps_1412061259016857962.jpg
│ │ │ │ ├── ps_1412061301081310284.jpg
│ │ │ │ └── ps_1412061302449755676.jpg
│ │ │ ├── thumb60_60
│ │ │ │ ├── ps_1412061257335587556.jpg
│ │ │ │ ├── ps_1412061259016857962.jpg
│ │ │ │ ├── ps_1412061301081310284.jpg
│ │ │ │ └── ps_1412061302449755676.jpg
│ │ │ └── thumb800_800
│ │ │ ├── ps_1412061257335587556.jpg
│ │ │ ├── ps_1412061259016857962.jpg
│ │ │ ├── ps_1412061301081310284.jpg
│ │ │ └── ps_1412061302449755676.jpg
│ │ ├── views
│ │ │ ├── account
│ │ │ │ ├── findpwd.cshtml
│ │ │ │ ├── login.cshtml
│ │ │ │ ├── register.cshtml
│ │ │ │ ├── resetpwd.cshtml
│ │ │ │ └── selectfindpwdtype.cshtml
│ │ │ ├── cart
│ │ │ │ ├── addsuccess.cshtml
│ │ │ │ ├── ajaxindex.cshtml
│ │ │ │ ├── fullcutproductlist.cshtml
│ │ │ │ ├── fullsendmainproductlist.cshtml
│ │ │ │ ├── index.cshtml
│ │ │ │ └── snap.cshtml
│ │ │ ├── catalog
│ │ │ │ ├── ajaxproductconsultlist.cshtml
│ │ │ │ ├── ajaxproductreviewlist.cshtml
│ │ │ │ ├── category.cshtml
│ │ │ │ ├── productconsultlist.cshtml
│ │ │ │ ├── product.cshtml
│ │ │ │ ├── productreviewlist.cshtml
│ │ │ │ ├── search.cshtml
│ │ │ │ ├── suit.cshtml
│ │ │ │ └── topic.cshtml
│ │ │ ├── help
│ │ │ │ └── question.cshtml
│ │ │ ├── home
│ │ │ │ └── index.cshtml
│ │ │ ├── news
│ │ │ │ ├── details.cshtml
│ │ │ │ └── list.cshtml
│ │ │ ├── order
│ │ │ │ ├── confirmorder.cshtml
│ │ │ │ ├── payresult.cshtml
│ │ │ │ ├── payshow.cshtml
│ │ │ │ └── submitresult.cshtml
│ │ │ ├── shared
│ │ │ │ ├── 404.cshtml
│ │ │ │ ├── error.cshtml
│ │ │ │ ├── _layout.cshtml
│ │ │ │ └── prompt.cshtml
│ │ │ ├── ucenter
│ │ │ │ ├── couponlist.cshtml
│ │ │ │ ├── favoriteproductlist.cshtml
│ │ │ │ ├── favoritestorelist.cshtml
│ │ │ │ ├── orderinfo.cshtml
│ │ │ │ ├── orderlist.cshtml
│ │ │ │ ├── paycreditloglist.cshtml
│ │ │ │ ├── productconsultlist.cshtml
│ │ │ │ ├── productreviewlist.cshtml
│ │ │ │ ├── revieworder.cshtml
│ │ │ │ ├── safeinfo.cshtml
│ │ │ │ ├── safesuccess.cshtml
│ │ │ │ ├── safeupdate.cshtml
│ │ │ │ ├── safeverify.cshtml
│ │ │ │ ├── shipaddresslist.cshtml
│ │ │ │ └── userinfo.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ └── Web.config
│ │ ├── Web.config
│ │ └── Web.linux.config
│ └── BrnMall.Web.Framework
│ ├── ActionSelectors
│ │ ├── HttpAJAXAttribute.cs
│ │ └── MultiButtonAttribute.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── BrnMall.Core.dll
│ │ │ ├── BrnMall.Core.pdb
│ │ │ ├── BrnMall.Data.dll
│ │ │ ├── BrnMall.Data.pdb
│ │ │ ├── BrnMall.Services.dll
│ │ │ ├── BrnMall.Services.pdb
│ │ │ ├── BrnMall.Web.Framework.dll
│ │ │ └── BrnMall.Web.Framework.pdb
│ │ └── Release
│ │ ├── BrnMall.Core.dll
│ │ ├── BrnMall.Core.pdb
│ │ ├── BrnMall.Data.dll
│ │ ├── BrnMall.Data.pdb
│ │ ├── BrnMall.Services.dll
│ │ ├── BrnMall.Services.pdb
│ │ ├── BrnMall.Web.Framework.dll
│ │ └── BrnMall.Web.Framework.pdb
│ ├── BrnMall.Web.Framework.csproj
│ ├── Controllers
│ │ ├── BaseMallAdminController.cs
│ │ ├── BaseMobileController.cs
│ │ ├── BaseStoreAdminController.cs
│ │ └── BaseWebController.cs
│ ├── ImageResult.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── BrnMall.Web.Framework.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.Web.Framework.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.Web.Framework.dll
│ │ │ ├── BrnMall.Web.Framework.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── BrnMall.Web.Framework.csproj.FileListAbsolute.txt
│ │ ├── BrnMall.Web.Framework.csprojResolveAssemblyReference.cache
│ │ ├── BrnMall.Web.Framework.dll
│ │ ├── BrnMall.Web.Framework.pdb
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Pager
│ │ ├── Base
│ │ │ ├── PageModel.cs
│ │ │ └── Pager.cs
│ │ ├── MallAdminPager.cs
│ │ ├── PagerHtmlExtension.cs
│ │ ├── StoreAdminPager.cs
│ │ └── WebPager.cs
│ ├── PromptModel.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Theme
│ │ ├── ThemeBuildManagerViewEngine .cs
│ │ ├── ThemeRazorViewEngine.cs
│ │ └── ThemeVirtualPathProviderViewEngine.cs
│ ├── Validators
│ │ ├── EmailAttribute.cs
│ │ ├── IdCardAttribute.cs
│ │ ├── MobileAttribute.cs
│ │ ├── NotLess
│ │ │ ├── DateTimeNotLessAttribute.cs
│ │ │ ├── DecimailNotLessAttribute.cs
│ │ │ └── IntNotLessAttribute.cs
│ │ ├── PhoneAttribute.cs
│ │ ├── UrlAttribute.cs
│ │ └── ZipCodeAttribute.cs.cs
│ ├── ViewPages
│ │ ├── MallAdminViewPage.cs
│ │ ├── MobileViewPage.cs
│ │ ├── StoreAdminViewPage.cs
│ │ └── WebViewPage.cs
│ └── WorkContext
│ ├── MallAdminWorkContext.cs
│ ├── MobileWorkContext.cs
│ ├── StoreAdminWorkContext.cs
│ └── WebWorkContext.cs
├── RefDLL
│ ├── EnyimMemcached
│ │ └── Enyim.Caching.dll
│ ├── fastJSON.dll
│ ├── RabbitMQ
│ │ ├── RabbitMQ.Client.dll
│ │ └── RabbitMQ.ServiceModel.dll
│ ├── RouteDebugger.dll
│ └── ServiceStack.Redis
│ ├── ServiceStack.Common.dll
│ ├── ServiceStack.Interfaces.dll
│ ├── ServiceStack.Redis.dll
│ └── ServiceStack.Text.dll
├── sqlserver.sql
├── Strategies
│ ├── BrnMall.AsynStrategy.ThreadPool
│ │ ├── AsynStrategy.cs
│ │ ├── BrnMall.AsynStrategy.ThreadPool.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.AsynStrategy.ThreadPool.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.AsynStrategy.ThreadPool.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.AsynStrategy.ThreadPool.dll
│ │ │ │ ├── BrnMall.AsynStrategy.ThreadPool.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.AsynStrategy.ThreadPool.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.AsynStrategy.ThreadPool.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.AsynStrategy.ThreadPool.dll
│ │ │ ├── BrnMall.AsynStrategy.ThreadPool.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── BrnMall.CacheStrategy.AspNet
│ │ ├── BrnMall.CacheStrategy.AspNet.csproj
│ │ ├── CacheStrategy.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.CacheStrategy.AspNet.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.CacheStrategy.AspNet.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.CacheStrategy.AspNet.dll
│ │ │ │ ├── BrnMall.CacheStrategy.AspNet.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.CacheStrategy.AspNet.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.CacheStrategy.AspNet.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.CacheStrategy.AspNet.dll
│ │ │ ├── BrnMall.CacheStrategy.AspNet.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── BrnMall.CartStrategy.SqlServer
│ │ ├── BrnMall.CartStrategy.SqlServer.csproj
│ │ ├── CartStrategy.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.CartStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.CartStrategy.SqlServer.dll
│ │ │ │ ├── BrnMall.CartStrategy.SqlServer.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.CartStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.CartStrategy.SqlServer.dll
│ │ │ ├── BrnMall.CartStrategy.SqlServer.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── BrnMall.ConfigStrategy.File
│ │ ├── BrnMall.ConfigStrategy.File.csproj
│ │ ├── ConfigStrategy.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.ConfigStrategy.File.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.ConfigStrategy.File.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.ConfigStrategy.File.dll
│ │ │ │ ├── BrnMall.ConfigStrategy.File.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.ConfigStrategy.File.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.ConfigStrategy.File.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.ConfigStrategy.File.dll
│ │ │ ├── BrnMall.ConfigStrategy.File.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── BrnMall.EmailStrategy.DotNet
│ │ ├── BrnMall.EmailStrategy.DotNet.csproj
│ │ ├── EmailStrategy.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.EmailStrategy.DotNet.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.EmailStrategy.DotNet.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.EmailStrategy.DotNet.dll
│ │ │ │ ├── BrnMall.EmailStrategy.DotNet.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.EmailStrategy.DotNet.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.EmailStrategy.DotNet.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.EmailStrategy.DotNet.dll
│ │ │ ├── BrnMall.EmailStrategy.DotNet.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── BrnMall.EventStrategy.Timer
│ │ ├── BrnMall.EventStrategy.Timer.csproj
│ │ ├── BrowseHistoryEvent.cs
│ │ ├── CartEvent.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.EventStrategy.Timer.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.EventStrategy.Timer.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.EventStrategy.Timer.dll
│ │ │ │ ├── BrnMall.EventStrategy.Timer.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.EventStrategy.Timer.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.EventStrategy.Timer.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.EventStrategy.Timer.dll
│ │ │ ├── BrnMall.EventStrategy.Timer.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ProductReviewCountEvent.cs
│ │ ├── ProductSaleCountEvent.cs
│ │ ├── ProductVisitCountEvent.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SQLEvent.cs
│ │ ├── StoreReviewEvent.cs
│ │ └── TimeProductEvent.cs
│ ├── BrnMall.OrderStrategy.SqlServer
│ │ ├── BrnMall.OrderStrategy.SqlServer.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.OrderStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.OrderStrategy.SqlServer.dll
│ │ │ │ ├── BrnMall.OrderStrategy.SqlServer.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.OrderStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.OrderStrategy.SqlServer.dll
│ │ │ ├── BrnMall.OrderStrategy.SqlServer.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── OrderStrategy.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── BrnMall.RandomStrategy.BrnMall
│ │ ├── BrnMall.RandomStrategy.BrnMall.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.RandomStrategy.BrnMall.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.RandomStrategy.BrnMall.dll
│ │ │ │ ├── BrnMall.RandomStrategy.BrnMall.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.RandomStrategy.BrnMall.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.RandomStrategy.BrnMall.dll
│ │ │ ├── BrnMall.RandomStrategy.BrnMall.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── RandomStrategy.cs
│ ├── BrnMall.RDBSStrategy.SqlServer
│ │ ├── BrnMall.RDBSStrategy.SqlServer.csproj
│ │ ├── MallStrategy.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.RDBSStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.RDBSStrategy.SqlServer.csprojResolveAssemblyReference.cache
│ │ │ │ ├── BrnMall.RDBSStrategy.SqlServer.dll
│ │ │ │ ├── BrnMall.RDBSStrategy.SqlServer.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.RDBSStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.RDBSStrategy.SqlServer.csprojResolveAssemblyReference.cache
│ │ │ ├── BrnMall.RDBSStrategy.SqlServer.dll
│ │ │ ├── BrnMall.RDBSStrategy.SqlServer.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── OrderStrategy.cs
│ │ ├── ProductStrategy.cs
│ │ ├── PromotionStrategy.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RDBSStrategy.cs
│ │ ├── StoreStrategy.cs
│ │ └── UserStrategy.cs
│ ├── BrnMall.SearchStrategy.SqlServer
│ │ ├── BrnMall.SearchStrategy.SqlServer.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.SearchStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.SearchStrategy.SqlServer.dll
│ │ │ │ ├── BrnMall.SearchStrategy.SqlServer.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.SearchStrategy.SqlServer.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.SearchStrategy.SqlServer.dll
│ │ │ ├── BrnMall.SearchStrategy.SqlServer.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SearchStrategy.cs
│ ├── BrnMall.SessionStrategy.AspNetCache
│ │ ├── BrnMall.SessionStrategy.AspNetCache.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BrnMall.SessionStrategy.AspNetCache.csproj.FileListAbsolute.txt
│ │ │ │ ├── BrnMall.SessionStrategy.AspNetCache.dll
│ │ │ │ ├── BrnMall.SessionStrategy.AspNetCache.pdb
│ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Release
│ │ │ ├── BrnMall.SessionStrategy.AspNetCache.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.SessionStrategy.AspNetCache.dll
│ │ │ ├── BrnMall.SessionStrategy.AspNetCache.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SessionStrategy.cs
│ └── BrnMall.SMSStrategy.BrnMall
│ ├── BrnMall.SMSStrategy.BrnMall.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── BrnMall.SMSStrategy.BrnMall.csproj.FileListAbsolute.txt
│ │ │ ├── BrnMall.SMSStrategy.BrnMall.dll
│ │ │ ├── BrnMall.SMSStrategy.BrnMall.pdb
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── Release
│ │ ├── BrnMall.SMSStrategy.BrnMall.csproj.FileListAbsolute.txt
│ │ ├── BrnMall.SMSStrategy.BrnMall.dll
│ │ ├── BrnMall.SMSStrategy.BrnMall.pdb
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SMSStrategy.cs
├── UpgradeLog.htm
└── 使用说明.txt
454 directories, 2201 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论