实例介绍
CoreShop商城系统是一款强大的小程序商城解决方案,基于最新的Asp.Net Core 7.0技术和Uni-App框架开发,实现了前后端分离和可视化布局,支持分布式部署和跨平台运行。该系统拥有分销、代理、团购、拼团、秒杀、直播、优惠券、自定义表单等多种营销工具,以及完善的SKU管理、订单处理、售后服务和物流跟踪功能,能够满足不同商家的需求。CoreShop支持一套代码编译发布到微信小程序、H5、Android、iOS等多个平台,极大地提高了开发效率和项目的可维护性。后台管理系统包含会员管理、商品管理、订单管理、财务管理等多个模块,配备了强大的促销引擎和多样化的促销方式,让营销活动更加灵活便捷。此外,CoreShop还提供了详尽的技术文档和安装教程,帮助用户快速上手和部署。无论是个人开发者还是企业用户,都可以通过CoreShop快速构建一个功能齐全、响应迅速的电商平台。
【实例截图】
【核心代码】
文件清单
└── CoreShop-4aa15d788ce06798a10e3d23580fd62e50f910c2
├── CoreCms.Net.Auth
│ ├── AuthorizationSetup.cs
│ ├── CoreCms.Net.Auth.csproj
│ ├── HttpContextSetup.cs
│ ├── HttpContextUser
│ │ ├── AspNetUser.cs
│ │ └── IHttpContextUser.cs
│ ├── OverWrite
│ │ ├── JwtHelper.cs
│ │ └── JwtTokenAuth.cs
│ ├── Policys
│ │ ├── ApiResponse.cs
│ │ ├── ApiResponseForAdminHandler.cs
│ │ ├── ApiResponseForClientHandler.cs
│ │ ├── JwtToken.cs
│ │ ├── PermissionForAdminHandler.cs
│ │ ├── PermissionForClientHandler.cs
│ │ ├── PermissionItem.cs
│ │ └── PermissionRequirement.cs
│ └── TokenHelper.cs
├── CoreCms.Net.Caching
│ ├── AccressToken
│ │ └── WeChatCacheAccessTokenHelper.cs
│ ├── AutoMate
│ │ ├── MemoryCache
│ │ │ ├── ICachingProvider.cs
│ │ │ └── MemoryCaching.cs
│ │ └── RedisCache
│ │ ├── IRedisOperationRepository.cs
│ │ └── RedisOperationRepository.cs
│ ├── CoreCms.Net.Caching.csproj
│ ├── Manual
│ │ ├── IManualCacheManager.cs
│ │ ├── ManualDataCache.cs
│ │ ├── MemoryCacheManager.cs
│ │ └── RedisCacheManager.cs
│ └── SqlSugar
│ ├── SqlSugarMemoryCache.cs
│ └── SqlSugarRedisCache.cs
├── CoreCms.Net.CodeGenerator
│ ├── CoreCms.Net.CodeGenerator.csproj
│ ├── CrudTemplete
│ │ ├── Controllers
│ │ │ └── Controller.tpl
│ │ ├── DbModel
│ │ │ └── Model.tpl
│ │ ├── Repositories
│ │ │ ├── IRepository.tpl
│ │ │ └── Repository.tpl
│ │ ├── Services
│ │ │ ├── IServices.tpl
│ │ │ └── Services.tpl
│ │ └── View
│ │ ├── Create.tpl
│ │ ├── Details.tpl
│ │ ├── Edit.tpl
│ │ └── Index.tpl
│ └── GeneratorCodeHelper.cs
├── CoreCms.Net.Configuration
│ ├── AppSettingsConstVars.cs
│ ├── AppSettingsHelper.cs
│ ├── CoreCms.Net.Configuration.csproj
│ ├── GlobalConstVars.cs
│ ├── GlobalEnumVars.cs
│ ├── GlobalErrorCodeVars.cs
│ ├── GlobalStatusCodes.cs
│ ├── SystemSettingConstVars.cs
│ └── SystemSettingDictionary.cs
├── CoreCms.Net.Core
│ ├── AOP
│ │ ├── CacheAopBase.cs
│ │ ├── MemoryCacheAop.cs
│ │ └── RedisCacheAop.cs
│ ├── Attribute
│ │ ├── CachingAttribute.cs
│ │ └── UseTranAttribute.cs
│ ├── AutoFac
│ │ └── AutofacModuleRegister.cs
│ ├── Config
│ │ ├── CorsSetup.cs
│ │ ├── HangFireSetup.cs
│ │ ├── MemoryCacheSetup.cs
│ │ ├── RedisCacheSetup.cs
│ │ ├── RedisMessageQueueSetup.cs
│ │ ├── SqlSugarSetup.cs
│ │ ├── SwaggerSetup.cs
│ │ └── YiLianYunSetup.cs
│ └── CoreCms.Net.Core.csproj
├── CoreCms.Net.Filter
│ ├── AdminsControllerPermission.cs
│ └── CoreCms.Net.Filter.csproj
├── CoreCms.Net.IRepository
│ ├── Advert
│ │ ├── ICoreCmsAdvertisementRepository.cs
│ │ └── ICoreCmsAdvertPositionRepository.cs
│ ├── Agent
│ │ ├── ICoreCmsAgentGoodsRepository.cs
│ │ ├── ICoreCmsAgentGradeRepository.cs
│ │ ├── ICoreCmsAgentOrderRepository.cs
│ │ ├── ICoreCmsAgentProductsRepository.cs
│ │ └── ICoreCmsAgentRepository.cs
│ ├── Api
│ │ └── ICoreCmsApiAccessTokenRepository.cs
│ ├── Article
│ │ ├── ICoreCmsArticleRepository.cs
│ │ └── ICoreCmsArticleTypeRepository.cs
│ ├── Bill
│ │ ├── ICoreCmsBillAftersalesImagesRepository.cs
│ │ ├── ICoreCmsBillAftersalesItemRepository.cs
│ │ ├── ICoreCmsBillAftersalesRepository.cs
│ │ ├── ICoreCmsBillDeliveryItemRepository.cs
│ │ ├── ICoreCmsBillDeliveryRepository.cs
│ │ ├── ICoreCmsBillLadingRepository.cs
│ │ ├── ICoreCmsBillPaymentsRepository.cs
│ │ ├── ICoreCmsBillRefundRepository.cs
│ │ ├── ICoreCmsBillReshipItemRepository.cs
│ │ └── ICoreCmsBillReshipRepository.cs
│ ├── Cart
│ │ └── ICoreCmsCartRepository.cs
│ ├── CodeGenerator
│ │ └── ICodeGeneratorRepository.cs
│ ├── Com
│ │ └── ICoreCmsLabelRepository.cs
│ ├── CoreCms.Net.IRepository.csproj
│ ├── Distribution
│ │ ├── ICoreCmsDistributionConditionRepository.cs
│ │ ├── ICoreCmsDistributionGradeRepository.cs
│ │ ├── ICoreCmsDistributionOrderRepository.cs
│ │ ├── ICoreCmsDistributionRepository.cs
│ │ └── ICoreCmsDistributionResultRepository.cs
│ ├── Financial
│ │ ├── ICoreCmsInvoiceRecordRepository.cs
│ │ ├── ICoreCmsInvoiceRepository.cs
│ │ ├── ICoreCmsPaymentsRepository.cs
│ │ └── ICoreCmsReportsRepository.cs
│ ├── Good
│ │ ├── ICoreCmsBrandRepository.cs
│ │ ├── ICoreCmsGoodsBrowsingRepository.cs
│ │ ├── ICoreCmsGoodsCategoryExtendRepository.cs
│ │ ├── ICoreCmsGoodsCategoryRepository.cs
│ │ ├── ICoreCmsGoodsCollectionRepository.cs
│ │ ├── ICoreCmsGoodsCommentRepository.cs
│ │ ├── ICoreCmsGoodsGradeRepository.cs
│ │ ├── ICoreCmsGoodsParamsRepository.cs
│ │ ├── ICoreCmsGoodsRepository.cs
│ │ ├── ICoreCmsGoodsTypeSpecRepository.cs
│ │ ├── ICoreCmsGoodsTypeSpecValueRepository.cs
│ │ ├── ICoreCmsProductsDistributionRepository.cs
│ │ └── ICoreCmsProductsRepository.cs
│ ├── IBaseRepository.cs
│ ├── IntelligentForms
│ │ ├── ICoreCmsFormItemRepository.cs
│ │ ├── ICoreCmsFormRepository.cs
│ │ ├── ICoreCmsFormSubmitDetailRepository.cs
│ │ └── ICoreCmsFormSubmitRepository.cs
│ ├── Message
│ │ ├── ICoreCmsMessageCenterRepository.cs
│ │ ├── ICoreCmsMessageRepository.cs
│ │ └── ICoreCmsSmsRepository.cs
│ ├── Order
│ │ ├── ICoreCmsOrderItemRepository.cs
│ │ ├── ICoreCmsOrderLogRepository.cs
│ │ └── ICoreCmsOrderRepository.cs
│ ├── Pay
│ │ ├── IAliPayRepository.cs
│ │ ├── IBalancePayRepository.cs
│ │ ├── IOfflinePayRepository.cs
│ │ └── IWeChatPayRepository.cs
│ ├── Pintuan
│ │ ├── ICoreCmsPintuanGoodsRepository.cs
│ │ ├── ICoreCmsPintuanRecordRepository.cs
│ │ └── ICoreCmsPintuanRuleRepository.cs
│ ├── Promotion
│ │ ├── ICoreCmsCouponRepository.cs
│ │ ├── ICoreCmsPromotionConditionRepository.cs
│ │ ├── ICoreCmsPromotionRecordRepository.cs
│ │ ├── ICoreCmsPromotionRepository.cs
│ │ └── ICoreCmsPromotionResultRepository.cs
│ ├── Service
│ │ ├── ICoreCmsServicesRepository.cs
│ │ ├── ICoreCmsUserServicesOrderRepository.cs
│ │ ├── ICoreCmsUserServicesTicketRepository.cs
│ │ └── ICoreCmsUserServicesTicketVerificationLogRepository.cs
│ ├── Shop
│ │ ├── ICoreCmsAreaRepository.cs
│ │ ├── ICoreCmsClerkRepository.cs
│ │ ├── ICoreCmsLogisticsRepository.cs
│ │ ├── ICoreCmsNoticeRepository.cs
│ │ ├── ICoreCmsPagesItemsRepository.cs
│ │ ├── ICoreCmsPagesRepository.cs
│ │ ├── ICoreCmsServiceDescriptionRepository.cs
│ │ ├── ICoreCmsSettingRepository.cs
│ │ ├── ICoreCmsShipRepository.cs
│ │ └── ICoreCmsStoreRepository.cs
│ ├── Stock
│ │ ├── ICoreCmsStockLogRepository.cs
│ │ └── ICoreCmsStockRepository.cs
│ ├── System
│ │ ├── ISysDictionaryDataRepository.cs
│ │ ├── ISysDictionaryRepository.cs
│ │ ├── ISysLoginRecordRepository.cs
│ │ ├── ISysMenuRepository.cs
│ │ ├── ISysNLogRecordsRepository.cs
│ │ ├── ISysOperRecordRepository.cs
│ │ ├── ISysOrganizationRepository.cs
│ │ ├── ISysRoleMenuRepository.cs
│ │ ├── ISysRoleRepository.cs
│ │ ├── ISysTaskLogRepository.cs
│ │ ├── ISysUserRepository.cs
│ │ └── ISysUserRoleRepository.cs
│ ├── UnitOfWork
│ │ └── IUnitOfWork.cs
│ ├── User
│ │ ├── ICoreCmsUserBalanceRepository.cs
│ │ ├── ICoreCmsUserBankCardRepository.cs
│ │ ├── ICoreCmsUserGradeRepository.cs
│ │ ├── ICoreCmsUserLogRepository.cs
│ │ ├── ICoreCmsUserPointLogRepository.cs
│ │ ├── ICoreCmsUserRepository.cs
│ │ ├── ICoreCmsUserShipRepository.cs
│ │ └── ICoreCmsUserTocashRepository.cs
│ ├── ICoreCmsUserWeChatInfoRepository.cs
│ ├── ICoreCmsUserWeChatMsgSubscriptionRepository.cs
│ ├── ICoreCmsUserWeChatMsgSubscriptionSwitchRepository.cs
│ ├── ICoreCmsUserWeChatMsgTemplateRepository.cs
│ └── IWeChatAccessTokenRepository.cs
├── CoreCms.Net.IServices
│ ├── Advert
│ │ ├── ICoreCmsAdvertisementServices.cs
│ │ └── ICoreCmsAdvertPositionServices.cs
│ ├── Agent
│ │ ├── ICoreCmsAgentGoodsServices.cs
│ │ ├── ICoreCmsAgentGradeServices.cs
│ │ ├── ICoreCmsAgentOrderServices.cs
│ │ ├── ICoreCmsAgentProductsServices.cs
│ │ └── ICoreCmsAgentServices.cs
│ ├── Api
│ │ └── ICoreCmsApiAccessTokenServices.cs
│ ├── Article
│ │ ├── ICoreCmsArticleServices.cs
│ │ └── ICoreCmsArticleTypeServices.cs
│ ├── Bill
│ │ ├── ICoreCmsBillAftersalesImagesServices.cs
│ │ ├── ICoreCmsBillAftersalesItemServices.cs
│ │ ├── ICoreCmsBillAftersalesServices.cs
│ │ ├── ICoreCmsBillDeliveryItemServices.cs
│ │ ├── ICoreCmsBillDeliveryServices.cs
│ │ ├── ICoreCmsBillLadingServices.cs
│ │ ├── ICoreCmsBillPaymentsServices.cs
│ │ ├── ICoreCmsBillRefundServices.cs
│ │ ├── ICoreCmsBillReshipItemServices.cs
│ │ └── ICoreCmsBillReshipServices.cs
│ ├── Cart
│ │ └── ICoreCmsCartServices.cs
│ ├── CodeGenerator
│ │ └── ICodeGeneratorServices.cs
│ ├── Com
│ │ ├── ICoreCmsLabelServices.cs
│ │ └── IToolsServices.cs
│ ├── CoreCms.Net.IServices.csproj
│ ├── Distribution
│ │ ├── ICoreCmsDistributionConditionServices.cs
│ │ ├── ICoreCmsDistributionGradeServices.cs
│ │ ├── ICoreCmsDistributionOrderServices.cs
│ │ ├── ICoreCmsDistributionResultServices.cs
│ │ └── ICoreCmsDistributionServices.cs
│ ├── Financial
│ │ ├── ICoreCmsInvoiceRecordServices.cs
│ │ ├── ICoreCmsInvoiceServices.cs
│ │ ├── ICoreCmsPaymentsServices.cs
│ │ └── ICoreCmsReportsServices.cs
│ ├── Good
│ │ ├── ICoreCmsBrandServices.cs
│ │ ├── ICoreCmsGoodsBrowsingServices.cs
│ │ ├── ICoreCmsGoodsCategoryExtendServices.cs
│ │ ├── ICoreCmsGoodsCategoryServices.cs
│ │ ├── ICoreCmsGoodsCollectionServices.cs
│ │ ├── ICoreCmsGoodsCommentServices.cs
│ │ ├── ICoreCmsGoodsGradeServices.cs
│ │ ├── ICoreCmsGoodsParamsServices.cs
│ │ ├── ICoreCmsGoodsServices.cs
│ │ ├── ICoreCmsGoodsTypeSpecServices.cs
│ │ ├── ICoreCmsGoodsTypeSpecValueServices.cs
│ │ ├── ICoreCmsProductsDistributionServices.cs
│ │ └── ICoreCmsProductsServices.cs
│ ├── IBaseServices.cs
│ ├── intelligentForms
│ │ ├── ICoreCmsFormItemServices.cs
│ │ ├── ICoreCmsFormServices.cs
│ │ ├── ICoreCmsFormSubmitDetailServices.cs
│ │ └── ICoreCmsFormSubmitServices.cs
│ ├── Message
│ │ ├── ICoreCmsMessageCenterServices.cs
│ │ ├── ICoreCmsMessageServices.cs
│ │ └── ICoreCmsSmsServices.cs
│ ├── Order
│ │ ├── ICoreCmsOrderItemServices.cs
│ │ ├── ICoreCmsOrderLogServices.cs
│ │ └── ICoreCmsOrderServices.cs
│ ├── Pay
│ │ ├── IAliPayServices.cs
│ │ ├── IBalancePayServices.cs
│ │ ├── IOfflinePayServices.cs
│ │ └── IWeChatPayServices.cs
│ ├── Pintuan
│ │ ├── ICoreCmsPintuanGoodsServices.cs
│ │ ├── ICoreCmsPintuanRecordServices.cs
│ │ └── ICoreCmsPintuanRuleServices.cs
│ ├── Promotion
│ │ ├── ICoreCmsCouponServices.cs
│ │ ├── ICoreCmsPromotionConditionServices.cs
│ │ ├── ICoreCmsPromotionRecordServices.cs
│ │ ├── ICoreCmsPromotionResultServices.cs
│ │ └── ICoreCmsPromotionServices.cs
│ ├── Service
│ │ ├── ICoreCmsServicesServices.cs
│ │ ├── ICoreCmsUserServicesOrderServices.cs
│ │ ├── ICoreCmsUserServicesTicketServices.cs
│ │ └── ICoreCmsUserServicesTicketVerificationLogServices.cs
│ ├── Share
│ │ └── ICoreCmsShareServices.cs
│ ├── Shop
│ │ ├── ICoreCmsAreaServices.cs
│ │ ├── ICoreCmsClerkServices.cs
│ │ ├── ICoreCmsLogisticsServices.cs
│ │ ├── ICoreCmsNoticeServices.cs
│ │ ├── ICoreCmsPagesItemsServices.cs
│ │ ├── ICoreCmsPagesServices.cs
│ │ ├── ICoreCmsServiceDescriptionServices.cs
│ │ ├── ICoreCmsSettingServices.cs
│ │ ├── ICoreCmsShipServices.cs
│ │ └── ICoreCmsStoreServices.cs
│ ├── Stock
│ │ ├── ICoreCmsStockLogServices.cs
│ │ └── ICoreCmsStockServices.cs
│ ├── System
│ │ ├── ISysDictionaryDataServices.cs
│ │ ├── ISysDictionaryServices.cs
│ │ ├── ISysLoginRecordServices.cs
│ │ ├── ISysMenuServices.cs
│ │ ├── ISysNLogRecordsServices.cs
│ │ ├── ISysOperRecordServices.cs
│ │ ├── ISysOrganizationServices.cs
│ │ ├── ISysRoleMenuServices.cs
│ │ ├── ISysRoleServices.cs
│ │ ├── ISysTaskLogServices.cs
│ │ ├── ISysUserRoleServices.cs
│ │ └── ISysUserServices.cs
│ ├── User
│ │ ├── ICoreCmsUserBalanceServices.cs
│ │ ├── ICoreCmsUserBankCardServices.cs
│ │ ├── ICoreCmsUserGradeServices.cs
│ │ ├── ICoreCmsUserLogServices.cs
│ │ ├── ICoreCmsUserPointLogServices.cs
│ │ ├── ICoreCmsUserServices.cs
│ │ ├── ICoreCmsUserShipServices.cs
│ │ └── ICoreCmsUserTocashServices.cs
│ ├── ICoreCmsUserWeChatInfoServices.cs
│ ├── ICoreCmsUserWeChatMsgSubscriptionServices.cs
│ ├── ICoreCmsUserWeChatMsgSubscriptionSwitchServices.cs
│ ├── ICoreCmsUserWeChatMsgTemplateServices.cs
│ └── IWeChatAccessTokenServices.cs
├── CoreCms.Net.Loging
│ ├── CoreCms.Net.Loging.csproj
│ ├── LogLockHelper.cs
│ └── NLogUtil.cs
├── CoreCms.Net.Mapping
│ ├── AutoMapperConfiguration.cs
│ ├── AutoMapperIProfile.cs
│ └── CoreCms.Net.Mapping.csproj
├── CoreCms.Net.Middlewares
│ ├── CoreCms.Net.Middlewares.csproj
│ ├── ExceptionHandlerMiddForAdmin.cs
│ ├── ExceptionHandlerMiddForClent.cs
│ ├── IPLogMildd.cs
│ ├── MiddlewareHelpers.cs
│ ├── RecordAccessLogsMildd.cs
│ ├── RequRespLogMildd.cs
│ └── SwaggerBasicAuthMiddleware.cs
├── CoreCms.Net.Model
│ ├── CoreCms.Net.Model.csproj
│ ├── Entities
│ │ ├── Advert
│ │ │ ├── CoreCmsAdvertisement.cs
│ │ │ └── CoreCmsAdvertPosition.cs
│ │ ├── Agent
│ │ │ ├── CoreCmsAgent.cs
│ │ │ ├── CoreCmsAgentGoods.cs
│ │ │ ├── CoreCmsAgentGoodsPartial.cs
│ │ │ ├── CoreCmsAgentGrade.cs
│ │ │ ├── CoreCmsAgentOrder.cs
│ │ │ ├── CoreCmsAgentOrderPartial.cs
│ │ │ ├── CoreCmsAgentPartial.cs
│ │ │ └── CoreCmsAgentProducts.cs
│ │ ├── Api
│ │ │ └── CoreCmsApiAccessToken.cs
│ │ ├── Article
│ │ │ ├── CoreCmsArticle.cs
│ │ │ ├── CoreCmsArticlePartial.cs
│ │ │ └── CoreCmsArticleType.cs
│ │ ├── Bill
│ │ │ ├── CoreCmsBillAftersales.cs
│ │ │ ├── CoreCmsBillAftersalesImages.cs
│ │ │ ├── CoreCmsBillAftersalesItem.cs
│ │ │ ├── CoreCmsBillAftersalesPartial.cs
│ │ │ ├── CoreCmsBillDelivery.cs
│ │ │ ├── CoreCmsBillDeliveryItem.cs
│ │ │ ├── CoreCmsBillDeliveryPartial.cs
│ │ │ ├── CoreCmsBillLading.cs
│ │ │ ├── CoreCmsBillLadingPartial.cs
│ │ │ ├── CoreCmsBillPayments.cs
│ │ │ ├── CoreCmsBillPaymentsPartial.cs
│ │ │ ├── CoreCmsBillRefund.cs
│ │ │ ├── CoreCmsBillRefundPartial.cs
│ │ │ ├── CoreCmsBillReship.cs
│ │ │ ├── CoreCmsBillReshipItem.cs
│ │ │ └── CoreCmsBillReshipPartial.cs
│ │ ├── Cart
│ │ │ └── CoreCmsCart.cs
│ │ ├── Com
│ │ │ └── CoreCmsLabel.cs
│ │ ├── Distribution
│ │ │ ├── CoreCmsDistributionCondition.cs
│ │ │ ├── CoreCmsDistributionConditionPartial.cs
│ │ │ ├── CoreCmsDistribution.cs
│ │ │ ├── CoreCmsDistributionGrade.cs
│ │ │ ├── CoreCmsDistributionOrder.cs
│ │ │ ├── CoreCmsDistributionOrderPartial.cs
│ │ │ ├── CoreCmsDistributionPartial.cs
│ │ │ └── CoreCmsDistributionResult.cs
│ │ ├── Expression
│ │ │ ├── ParameterRebinder.cs
│ │ │ └── PredicateBuilder.cs
│ │ ├── Financial
│ │ │ ├── CoreCmsInvoice.cs
│ │ │ ├── CoreCmsInvoicePartial.cs
│ │ │ ├── CoreCmsInvoiceRecord.cs
│ │ │ └── CoreCmsPayments.cs
│ │ ├── Form
│ │ │ ├── CoreCmsForm.cs
│ │ │ ├── CoreCmsFormItem.cs
│ │ │ ├── CoreCmsFormItemPartial.cs
│ │ │ ├── CoreCmsFormPartial.cs
│ │ │ ├── CoreCmsFormSubmit.cs
│ │ │ ├── CoreCmsFormSubmitDetail.cs
│ │ │ └── CoreCmsFormSubmitPartial.cs
│ │ ├── Good
│ │ │ ├── CoreCmsBrand.cs
│ │ │ ├── CoreCmsGoodsBrowsing.cs
│ │ │ ├── CoreCmsGoodsBrowsingPartial.cs
│ │ │ ├── CoreCmsGoodsCategory.cs
│ │ │ ├── CoreCmsGoodsCategoryExtend.cs
│ │ │ ├── CoreCmsGoodsCategoryPartial.cs
│ │ │ ├── CoreCmsGoodsCollection.cs
│ │ │ ├── CoreCmsGoodsCollectionPartial.cs
│ │ │ ├── CoreCmsGoodsComment.cs
│ │ │ ├── CoreCmsGoodsCommentPartial.cs
│ │ │ ├── CoreCmsGoods.cs
│ │ │ ├── CoreCmsGoodsGrade.cs
│ │ │ ├── CoreCmsGoodsGradePartial.cs
│ │ │ ├── CoreCmsGoodsImages.cs
│ │ │ ├── CoreCmsGoodsParams.cs
│ │ │ ├── CoreCmsGoodsPartial.cs
│ │ │ ├── CoreCmsGoodsTypeSpec.cs
│ │ │ ├── CoreCmsGoodsTypeSpecPartial.cs
│ │ │ ├── CoreCmsGoodsTypeSpecValue.cs
│ │ │ ├── CoreCmsProducts.cs
│ │ │ ├── CoreCmsProductsDistribution.cs
│ │ │ └── CoreCmsProductsPartial.cs
│ │ ├── Message
│ │ │ ├── CoreCmsMessageCenter.cs
│ │ │ ├── CoreCmsMessage.cs
│ │ │ └── CoreCmsSms.cs
│ │ ├── Order
│ │ │ ├── CoreCmsOrder.cs
│ │ │ ├── CoreCmsOrderItem.cs
│ │ │ ├── CoreCmsOrderItemPartial.cs
│ │ │ ├── CoreCmsOrderLog.cs
│ │ │ ├── CoreCmsOrderLogPartial.cs
│ │ │ └── CoreCmsOrderPartial.cs
│ │ ├── Pintuan
│ │ │ ├── CoreCmsPintuanGoods.cs
│ │ │ ├── CoreCmsPintuanRecord.cs
│ │ │ ├── CoreCmsPintuanRecordPartial.cs
│ │ │ ├── CoreCmsPintuanRule.cs
│ │ │ └── CoreCmsPintuanRulePartial.cs
│ │ ├── Promotion
│ │ │ ├── CoreCmsCoupon.cs
│ │ │ ├── CoreCmsCouponPartial.cs
│ │ │ ├── CoreCmsPromotionCondition.cs
│ │ │ ├── CoreCmsPromotion.cs
│ │ │ ├── CoreCmsPromotionPartial.cs
│ │ │ ├── CoreCmsPromotionRecord.cs
│ │ │ └── CoreCmsPromotionResult.cs
│ │ ├── Service
│ │ │ ├── CoreCmsServices.cs
│ │ │ ├── CoreCmsServicesPartial.cs
│ │ │ ├── CoreCmsUserServicesOrder.cs
│ │ │ ├── CoreCmsUserServicesOrderPartial.cs
│ │ │ ├── CoreCmsUserServicesTicket.cs
│ │ │ ├── CoreCmsUserServicesTicketPartial.cs
│ │ │ ├── CoreCmsUserServicesTicketVerificationLog.cs
│ │ │ └── CoreCmsUserServicesTicketVerificationLogPartial.cs
│ │ ├── Shop
│ │ │ ├── CoreCmsArea.cs
│ │ │ ├── CoreCmsClerk.cs
│ │ │ ├── CoreCmsImages.cs
│ │ │ ├── CoreCmsLogistics.cs
│ │ │ ├── CoreCmsNotice.cs
│ │ │ ├── CoreCmsPages.cs
│ │ │ ├── CoreCmsPagesItems.cs
│ │ │ ├── CoreCmsServiceDescription.cs
│ │ │ ├── CoreCmsSetting.cs
│ │ │ ├── CoreCmsShip.cs
│ │ │ ├── CoreCmsShipPartial.cs
│ │ │ ├── CoreCmsStore.cs
│ │ │ └── CoreCmsStorePartial.cs
│ │ ├── Stock
│ │ │ ├── CoreCmsStock.cs
│ │ │ ├── CoreCmsStockLog.cs
│ │ │ ├── CoreCmsStockLogPartial.cs
│ │ │ └── CoreCmsStockPartial.cs
│ │ ├── System
│ │ │ ├── SysDictionary.cs
│ │ │ ├── SysDictionaryData.cs
│ │ │ ├── SysLoginRecord.cs
│ │ │ ├── SysMenu.cs
│ │ │ ├── SysNLogRecords.cs
│ │ │ ├── SysOperRecord.cs
│ │ │ ├── SysOrganization.cs
│ │ │ ├── SysRole.cs
│ │ │ ├── SysRoleMenu.cs
│ │ │ ├── SysRoleMenuPartial.cs
│ │ │ ├── SysTaskLog.cs
│ │ │ ├── SysUser.cs
│ │ │ ├── SysUserPartial.cs
│ │ │ └── SysUserRole.cs
│ │ ├── User
│ │ │ ├── CoreCmsLoginLog.cs
│ │ │ ├── CoreCmsUserBalance.cs
│ │ │ ├── CoreCmsUserBalancePartial.cs
│ │ │ ├── CoreCmsUserBankCard.cs
│ │ │ ├── CoreCmsUserBankCardPartial.cs
│ │ │ ├── CoreCmsUser.cs
│ │ │ ├── CoreCmsUserGrade.cs
│ │ │ ├── CoreCmsUserLog.cs
│ │ │ ├── CoreCmsUserPartial.cs
│ │ │ ├── CoreCmsUserPointLog.cs
│ │ │ ├── CoreCmsUserPointLogPartial.cs
│ │ │ ├── CoreCmsUserShip.cs
│ │ │ ├── CoreCmsUserShipPartial.cs
│ │ │ ├── CoreCmsUserTocash.cs
│ │ │ ├── CoreCmsUserTocashPartial.cs
│ │ │ └── CoreCmsUserToken.cs
│ │ ├── View
│ │ │ └── StoreClerkDto.cs
│ │ ├── CoreCmsUserWeChatInfo.cs
│ │ ├── CoreCmsUserWeChatMsgSubscription.cs
│ │ ├── CoreCmsUserWeChatMsgSubscriptionSwitch.cs
│ │ ├── CoreCmsUserWeChatMsgTemplate.cs
│ │ ├── CoreCmsUserWeChatMsgTemplatePartial.cs
│ │ ├── CoreCmsWeixinAuthor.cs
│ │ ├── CoreCmsWeixinMediaMessage.cs
│ │ ├── CoreCmsWeixinMenu.cs
│ │ ├── CoreCmsWeixinMessage.cs
│ │ └── WeChatAccessToken.cs
│ ├── FromBody
│ │ ├── FMAdvert.cs
│ │ ├── FMAgent.cs
│ │ ├── FMBillAftersales.cs
│ │ ├── FMBillRefund.cs
│ │ ├── FMBillReship.cs
│ │ ├── FMCart.cs
│ │ ├── FMCoupon.cs
│ │ ├── FMData.cs
│ │ ├── FMDistribution.cs
│ │ ├── FMForm.cs
│ │ ├── FMGoods.cs
│ │ ├── FMGroup.cs
│ │ ├── FMId.cs
│ │ ├── FMInsert.cs
│ │ ├── FMLogin.cs
│ │ ├── FMOrder.cs
│ │ ├── FMPage.cs
│ │ ├── FmPages.cs
│ │ ├── FmPinTuan.cs
│ │ ├── FMProducts.cs
│ │ ├── FMReports.cs
│ │ ├── FMSerializeArray.cs
│ │ ├── FMSetting.cs
│ │ ├── FMShare.cs
│ │ ├── FMStock.cs
│ │ ├── FMStore.cs
│ │ ├── FMSysMenu.cs
│ │ ├── FMSysOrganization.cs
│ │ ├── FMTools.cs
│ │ ├── FMUpdate.cs
│ │ ├── FMUser.cs
│ │ └── FMWxPost.cs
│ └── ViewModels
│ ├── Api
│ │ ├── KuaiDi100.cs
│ │ └── ShowApi.cs
│ ├── Basics
│ │ ├── DbTableInfo.cs
│ │ ├── DictionaryKeyValues.cs
│ │ ├── ErrorViewModel.cs
│ │ ├── IPageList.cs
│ │ ├── LastTimeDetail.cs
│ │ └── PageList.cs
│ ├── DTO
│ │ ├── AdvertDto.cs
│ │ ├── Agent
│ │ │ └── AgentRankingDTO.cs
│ │ ├── AreasDto.cs
│ │ ├── AreaTreeDto.cs
│ │ ├── BillAftersalesDto.cs
│ │ ├── BillPaymentsDto.cs
│ │ ├── BillReshipDto.cs
│ │ ├── CartDto.cs
│ │ ├── CKEditorUploadedResult.cs
│ │ ├── CouponDto.cs
│ │ ├── Distribution
│ │ │ ├── DistributionDto.cs
│ │ │ └── DistributionRankingDTO.cs
│ │ ├── FormDto.cs
│ │ ├── ManagerDto.cs
│ │ ├── ManagerLogDto.cs
│ │ ├── OrderDTO.cs
│ │ ├── PagesItemsDto.cs
│ │ ├── RandUser.cs
│ │ ├── SysMenuTreeDto.cs
│ │ ├── TagPintuan.cs
│ │ ├── UserDto.cs
│ │ ├── WxGoodCategoryDto.cs
│ │ ├── WxNameTypeDto.cs
│ │ └── WxNameValueDto.cs
│ ├── Echarts
│ │ ├── EchartsSetOption.cs
│ │ └── GetOrdersReportsDbSelectOut.cs
│ ├── Excel
│ │ └── CellValueItem.cs
│ ├── LogInfo
│ │ ├── LogInfo.cs
│ │ └── RequestInfo.cs
│ ├── Options
│ │ └── FilesStorageOptions.cs
│ ├── Pay
│ │ ├── AlipayViewModel.cs
│ │ └── WeChatPayViewModel.cs
│ ├── QueryMuch
│ │ └── QMAftersalesItems.cs
│ ├── Sms
│ │ └── SMSOptions.cs
│ └── UI
│ ├── AdminUiCallBack.cs
│ ├── AdminUiMenu.cs
│ ├── DTree.cs
│ ├── EnumEntity.cs
│ ├── ErrorViewModel.cs
│ ├── ReportsBack.cs
│ └── WebApiCallBack.cs
├── CoreCms.Net.RedisMQ
│ ├── CoreCms.Net.RedisMQ.csproj
│ └── Subscribe
│ ├── AfterSalesReviewSubscribe.cs
│ ├── LogingSubscribe.cs
│ ├── OrderAgentOrDistributionSubscribe.cs
│ ├── OrderAutomaticDeliverySubscribe.cs
│ ├── OrderFinishCommandSubscribe.cs
│ ├── OrderPrintSubscribe.cs
│ ├── SendWxTemplateMessageSubscribe.cs
│ ├── UserSubscribe.cs
│ └── WeChatPayNoticeSubscribe.cs
├── CoreCms.Net.Repository
│ ├── Advert
│ │ ├── CoreCmsAdvertisementRepository.cs
│ │ └── CoreCmsAdvertPositionRepository.cs
│ ├── Agent
│ │ ├── CoreCmsAgentGoodsRepository.cs
│ │ ├── CoreCmsAgentGradeRepository.cs
│ │ ├── CoreCmsAgentOrderRepository.cs
│ │ ├── CoreCmsAgentProductsRepository.cs
│ │ └── CoreCmsAgentRepository.cs
│ ├── Api
│ │ └── CoreCmsApiAccessTokenRepository.cs
│ ├── Article
│ │ ├── CoreCmsArticleRepository.cs
│ │ └── CoreCmsArticleTypeRepository.cs
│ ├── BaseRepository.cs
│ ├── Bill
│ │ ├── CoreCmsBillAftersalesImagesRepository.cs
│ │ ├── CoreCmsBillAftersalesItemRepository.cs
│ │ ├── CoreCmsBillAftersalesRepository.cs
│ │ ├── CoreCmsBillDeliveryItemRepository.cs
│ │ ├── CoreCmsBillDeliveryRepository.cs
│ │ ├── CoreCmsBillLadingRepository.cs
│ │ ├── CoreCmsBillPaymentsRepository.cs
│ │ ├── CoreCmsBillRefundRepository.cs
│ │ ├── CoreCmsBillReshipItemRepository.cs
│ │ └── CoreCmsBillReshipRepository.cs
│ ├── Cart
│ │ └── CoreCmsCartRepository.cs
│ ├── CodeGenerator
│ │ └── CodeGeneratorRepository.cs
│ ├── Com
│ │ └── CoreCmsLabelRepository.cs
│ ├── CoreCms.Net.Repository.csproj
│ ├── Distribution
│ │ ├── CoreCmsDistributionConditionRepository.cs
│ │ ├── CoreCmsDistributionGradeRepository.cs
│ │ ├── CoreCmsDistributionOrderRepository.cs
│ │ ├── CoreCmsDistributionRepository.cs
│ │ └── CoreCmsDistributionResultRepository.cs
│ ├── Financial
│ │ ├── CoreCmsInvoiceRecordRepository.cs
│ │ ├── CoreCmsInvoiceRepository.cs
│ │ ├── CoreCmsPaymentsRepository.cs
│ │ └── CoreCmsReportsRepository.cs
│ ├── Good
│ │ ├── CoreCmsBrandRepository.cs
│ │ ├── CoreCmsGoodsBrowsingRepository.cs
│ │ ├── CoreCmsGoodsCategoryExtendRepository.cs
│ │ ├── CoreCmsGoodsCategoryRepository.cs
│ │ ├── CoreCmsGoodsCollectionRepository.cs
│ │ ├── CoreCmsGoodsCommentRepository.cs
│ │ ├── CoreCmsGoodsGradeRepository.cs
│ │ ├── CoreCmsGoodsParamsRepository.cs
│ │ ├── CoreCmsGoodsRepository.cs
│ │ ├── CoreCmsGoodsTypeSpecRepository.cs
│ │ ├── CoreCmsGoodsTypeSpecValueRepository.cs
│ │ ├── CoreCmsProductsDistributionRepository.cs
│ │ └── CoreCmsProductsRepository.cs
│ ├── IntelligentForms
│ │ ├── CoreCmsFormItemRepository.cs
│ │ ├── CoreCmsFormRepository.cs
│ │ ├── CoreCmsFormSubmitDetailRepository.cs
│ │ └── CoreCmsFormSubmitRepository.cs
│ ├── Message
│ │ ├── CoreCmsMessageCenterRepository.cs
│ │ ├── CoreCmsMessageRepository.cs
│ │ └── CoreCmsSmsRepository.cs
│ ├── Order
│ │ ├── CoreCmsOrderItemRepository.cs
│ │ ├── CoreCmsOrderLogRepository.cs
│ │ └── CoreCmsOrderRepository.cs
│ ├── Pay
│ │ ├── AliPayRepository.cs
│ │ ├── BalancePayRepository.cs
│ │ ├── OfflinePayRepository.cs
│ │ └── WeChatPayRepository.cs
│ ├── Pintuan
│ │ ├── CoreCmsPintuanGoodsRepository.cs
│ │ ├── CoreCmsPintuanRecordRepository.cs
│ │ └── CoreCmsPintuanRuleRepository.cs
│ ├── Promotion
│ │ ├── CoreCmsCouponRepository.cs
│ │ ├── CoreCmsPromotionConditionRepository.cs
│ │ ├── CoreCmsPromotionRecordRepository.cs
│ │ ├── CoreCmsPromotionRepository.cs
│ │ └── CoreCmsPromotionResultRepository.cs
│ ├── Service
│ │ ├── CoreCmsServicesRepository.cs
│ │ ├── CoreCmsUserServicesOrderRepository.cs
│ │ ├── CoreCmsUserServicesTicketRepository.cs
│ │ └── CoreCmsUserServicesTicketVerificationLogRepository.cs
│ ├── Shop
│ │ ├── CoreCmsAreaRepository.cs
│ │ ├── CoreCmsClerkRepository.cs
│ │ ├── CoreCmsLogisticsRepository.cs
│ │ ├── CoreCmsNoticeRepository.cs
│ │ ├── CoreCmsPagesItemsRepository.cs
│ │ ├── CoreCmsPagesRepository.cs
│ │ ├── CoreCmsServiceDescriptionRepository.cs
│ │ ├── CoreCmsSettingRepository.cs
│ │ ├── CoreCmsShipRepository.cs
│ │ └── CoreCmsStoreRepository.cs
│ ├── SqlSugarExtensions.cs
│ ├── Stock
│ │ ├── CoreCmsStockLogRepository.cs
│ │ └── CoreCmsStockRepository.cs
│ ├── System
│ │ ├── SysDictionaryDataRepository.cs
│ │ ├── SysDictionaryRepository.cs
│ │ ├── SysLoginRecordRepository.cs
│ │ ├── SysMenuRepository.cs
│ │ ├── SysNLogRecordsRepository.cs
│ │ ├── SysOperRecordRepository.cs
│ │ ├── SysOrganizationRepository.cs
│ │ ├── SysRoleMenuRepository.cs
│ │ ├── SysRoleRepository.cs
│ │ ├── SysTaskLogRepository.cs
│ │ ├── SysUserRepository.cs
│ │ └── SysUserRoleRepository.cs
│ ├── UnitOfWork
│ │ └── UnitOfWork.cs
│ ├── User
│ │ ├── CoreCmsUserBalanceRepository.cs
│ │ ├── CoreCmsUserBankCardRepository.cs
│ │ ├── CoreCmsUserGradeRepository.cs
│ │ ├── CoreCmsUserLogRepository.cs
│ │ ├── CoreCmsUserPointLogRepository.cs
│ │ ├── CoreCmsUserRepository.cs
│ │ ├── CoreCmsUserShipRepository.cs
│ │ └── CoreCmsUserTocashRepository.cs
│ ├── CoreCmsUserWeChatInfoRepository.cs
│ ├── CoreCmsUserWeChatMsgSubscriptionRepository.cs
│ ├── CoreCmsUserWeChatMsgSubscriptionSwitchRepository.cs
│ ├── CoreCmsUserWeChatMsgTemplateRepository.cs
│ └── WeChatAccessTokenRepository.cs
├── CoreCms.Net.Services
│ ├── Advert
│ │ ├── CoreCmsAdvertisementServices.cs
│ │ └── CoreCmsAdvertPositionServices.cs
│ ├── Agent
│ │ ├── CoreCmsAgentGoodsServices.cs
│ │ ├── CoreCmsAgentGradeServices.cs
│ │ ├── CoreCmsAgentOrderServices.cs
│ │ ├── CoreCmsAgentProductsServices.cs
│ │ └── CoreCmsAgentServices.cs
│ ├── Api
│ │ └── CoreCmsApiAccessTokenServices.cs
│ ├── Article
│ │ ├── CoreCmsArticleServices.cs
│ │ └── CoreCmsArticleTypeServices.cs
│ ├── BaseServices.cs
│ ├── Bill
│ │ ├── CoreCmsBillAftersalesImagesServices.cs
│ │ ├── CoreCmsBillAftersalesItemServices.cs
│ │ ├── CoreCmsBillAftersalesServices.cs
│ │ ├── CoreCmsBillDeliveryItemServices.cs
│ │ ├── CoreCmsBillDeliveryServices.cs
│ │ ├── CoreCmsBillLadingServices.cs
│ │ ├── CoreCmsBillPaymentsServices.cs
│ │ ├── CoreCmsBillRefundServices.cs
│ │ ├── CoreCmsBillReshipItemServices.cs
│ │ └── CoreCmsBillReshipServices.cs
│ ├── Cart
│ │ └── CoreCmsCartServices.cs
│ ├── CodeGenerator
│ │ └── CodeGeneratorServices.cs
│ ├── Com
│ │ ├── CoreCmsLabelServices.cs
│ │ └── ToolsServices.cs
│ ├── CoreCms.Net.Services.csproj
│ ├── Distribution
│ │ ├── CoreCmsDistributionConditionServices.cs
│ │ ├── CoreCmsDistributionGradeServices.cs
│ │ ├── CoreCmsDistributionOrderServices.cs
│ │ ├── CoreCmsDistributionResultServices.cs
│ │ └── CoreCmsDistributionServices.cs
│ ├── Financial
│ │ ├── CoreCmsInvoiceRecordServices.cs
│ │ ├── CoreCmsInvoiceServices.cs
│ │ ├── CoreCmsPaymentsServices.cs
│ │ └── CoreCmsReportsServices.cs
│ ├── Good
│ │ ├── CoreCmsBrandServices.cs
│ │ ├── CoreCmsGoodsBrowsingServices.cs
│ │ ├── CoreCmsGoodsCategoryExtendServices.cs
│ │ ├── CoreCmsGoodsCategoryServices.cs
│ │ ├── CoreCmsGoodsCollectionServices.cs
│ │ ├── CoreCmsGoodsCommentServices.cs
│ │ ├── CoreCmsGoodsGradeServices.cs
│ │ ├── CoreCmsGoodsParamsServices.cs
│ │ ├── CoreCmsGoodsServices.cs
│ │ ├── CoreCmsGoodsTypeSpecServices.cs
│ │ ├── CoreCmsGoodsTypeSpecValueServices.cs
│ │ ├── CoreCmsProductsDistributionServices.cs
│ │ └── CoreCmsProductsServices.cs
│ ├── IntelligentForms
│ │ ├── CoreCmsFormItemServices.cs
│ │ ├── CoreCmsFormServices.cs
│ │ ├── CoreCmsFormSubmitDetailServices.cs
│ │ └── CoreCmsFormSubmitServices.cs
│ ├── Message
│ │ ├── CoreCmsMessageCenterServices.cs
│ │ ├── CoreCmsMessageServices.cs
│ │ └── CoreCmsSmsServices.cs
│ ├── Order
│ │ ├── CoreCmsOrderItemServices.cs
│ │ ├── CoreCmsOrderLogServices.cs
│ │ └── CoreCmsOrderServices.cs
│ ├── Pay
│ │ ├── AliPayServices.cs
│ │ ├── BalancePayServices.cs
│ │ ├── OfflinePayServices.cs
│ │ └── WeChatPayServices.cs
│ ├── Pintuan
│ │ ├── CoreCmsPintuanGoodsServices.cs
│ │ ├── CoreCmsPintuanRecordServices.cs
│ │ └── CoreCmsPintuanRuleServices.cs
│ ├── Promotion
│ │ ├── CoreCmsCouponServices.cs
│ │ ├── CoreCmsPromotionConditionServices.cs
│ │ ├── CoreCmsPromotionRecordServices.cs
│ │ ├── CoreCmsPromotionResultServices.cs
│ │ └── CoreCmsPromotionServices.cs
│ ├── Service
│ │ ├── CoreCmsServicesServices.cs
│ │ ├── CoreCmsUserServicesOrderServices.cs
│ │ ├── CoreCmsUserServicesTicketServices.cs
│ │ └── CoreCmsUserServicesTicketVerificationLogServices.cs
│ ├── Share
│ │ └── CoreCmsShareServices.cs
│ ├── Shop
│ │ ├── CoreCmsAreaServices.cs
│ │ ├── CoreCmsClerkServices.cs
│ │ ├── CoreCmsLogisticsServices.cs
│ │ ├── CoreCmsNoticeServices.cs
│ │ ├── CoreCmsPagesItemsServices.cs
│ │ ├── CoreCmsPagesServices.cs
│ │ ├── CoreCmsServiceDescriptionServices.cs
│ │ ├── CoreCmsSettingServices.cs
│ │ ├── CoreCmsShipServices.cs
│ │ └── CoreCmsStoreServices.cs
│ ├── Stock
│ │ ├── CoreCmsStockLogServices.cs
│ │ └── CoreCmsStockServices.cs
│ ├── System
│ │ ├── SysDictionaryDataServices.cs
│ │ ├── SysDictionaryServices.cs
│ │ ├── SysLoginRecordServices.cs
│ │ ├── SysMenuServices.cs
│ │ ├── SysNLogRecordsServices.cs
│ │ ├── SysOperRecordServices.cs
│ │ ├── SysOrganizationServices.cs
│ │ ├── SysRoleMenuServices.cs
│ │ ├── SysRoleServices.cs
│ │ ├── SysTaskLogServices.cs
│ │ ├── SysUserRoleServices.cs
│ │ └── SysUserServices.cs
│ ├── User
│ │ ├── CoreCmsUserBalanceServices.cs
│ │ ├── CoreCmsUserBankCardServices.cs
│ │ ├── CoreCmsUserGradeServices.cs
│ │ ├── CoreCmsUserLogServices.cs
│ │ ├── CoreCmsUserPointLogServices.cs
│ │ ├── CoreCmsUserServices.cs
│ │ ├── CoreCmsUserShipServices.cs
│ │ └── CoreCmsUserTocashServices.cs
│ ├── CoreCmsUserWeChatInfoServices.cs
│ ├── CoreCmsUserWeChatMsgSubscriptionServices.cs
│ ├── CoreCmsUserWeChatMsgSubscriptionSwitchServices.cs
│ ├── CoreCmsUserWeChatMsgTemplateServices.cs
│ └── WeChatAccessTokenServices.cs
├── CoreCms.Net.Swagger
│ ├── CoreCms.Net.Swagger.csproj
│ ├── CustomApiVersion.cs
│ └── CustomRouteAttribute.cs
├── CoreCms.Net.Task
│ ├── AutoCancelOrderJob.cs
│ ├── AutoCanclePintuanJob.cs
│ ├── AutoSignOrderJob.cs
│ ├── CompleteOrderJob.cs
│ ├── CoreCms.Net.Task.csproj
│ ├── EvaluateOrderJob.cs
│ ├── HangfireDispose.cs
│ ├── RefreshWeChatAccessTokenJob.cs
│ ├── RemindOrderPayJob.cs
│ └── RemoveOperationLogJob.cs
├── CoreCms.Net.Uni-App
│ ├── CoreCms.Net.Uni-App.csproj
│ ├── CoreShop
│ │ ├── App.vue
│ │ ├── common
│ │ │ ├── mixins
│ │ │ │ └── mixinsHelper.js
│ │ │ ├── request
│ │ │ │ ├── http.api.js
│ │ │ │ └── http.interceptor.js
│ │ │ ├── setting
│ │ │ │ ├── constVarsHelper.js
│ │ │ │ └── coreThemeHelper.js
│ │ │ ├── store
│ │ │ │ └── index.js
│ │ │ └── utils
│ │ │ ├── commonHelper.js
│ │ │ ├── dbHelper.js
│ │ │ ├── uploadHelper.js
│ │ │ └── uqrcode.js
│ │ ├── components
│ │ │ ├── coreshop-copyright
│ │ │ │ └── coreshop-copyright.vue
│ │ │ ├── coreshop-fab
│ │ │ │ └── coreshop-fab.vue
│ │ │ ├── coreshop-login-modal
│ │ │ │ └── coreshop-login-modal.vue
│ │ │ ├── coreshop-modal-img
│ │ │ │ └── coreshop-modal-img.vue
│ │ │ ├── coreshop-navbar-slot
│ │ │ │ └── coreshop-navbar-slot.vue
│ │ │ ├── coreshop-page
│ │ │ │ ├── coreshop-adpop.vue
│ │ │ │ ├── coreshop-articleClassify.vue
│ │ │ │ ├── coreshop-article.vue
│ │ │ │ ├── coreshop-blank.vue
│ │ │ │ ├── coreshop-content.vue
│ │ │ │ ├── coreshop-coupon.vue
│ │ │ │ ├── coreshop-goods.vue
│ │ │ │ ├── coreshop-goodTabBar.vue
│ │ │ │ ├── coreshop-groupPurchase.vue
│ │ │ │ ├── coreshop-imgSingle.vue
│ │ │ │ ├── coreshop-imgSlide.vue
│ │ │ │ ├── coreshop-imgWindow.vue
│ │ │ │ ├── coreshop-navBar.vue
│ │ │ │ ├── coreshop-notice.vue
│ │ │ │ ├── coreshop-pinTuan.vue
│ │ │ │ ├── coreshop-record.vue
│ │ │ │ ├── coreshop-search.vue
│ │ │ │ ├── coreshop-service.vue
│ │ │ │ ├── coreshop-tabbar.vue
│ │ │ │ ├── coreshop-textarea.vue
│ │ │ │ ├── coreshop-video.vue
│ │ │ │ └── coreshop.vue
│ │ │ ├── coreshop-share
│ │ │ │ └── shareByWx.vue
│ │ │ └── coreshop-spec
│ │ │ └── coreshop-spec.vue
│ │ ├── index.html
│ │ ├── main.js
│ │ ├── manifest.json
│ │ ├── package-lock.json
│ │ ├── pages
│ │ │ ├── activity
│ │ │ │ ├── groupBuying
│ │ │ │ │ ├── details
│ │ │ │ │ │ ├── details.scss
│ │ │ │ │ │ └── details.vue
│ │ │ │ │ └── list
│ │ │ │ │ ├── list.scss
│ │ │ │ │ └── list.vue
│ │ │ │ ├── pinTuan
│ │ │ │ │ ├── details
│ │ │ │ │ │ ├── details.scss
│ │ │ │ │ │ └── details.vue
│ │ │ │ │ └── list
│ │ │ │ │ ├── list.scss
│ │ │ │ │ └── list.vue
│ │ │ │ └── seckill
│ │ │ │ ├── details
│ │ │ │ │ └── details.vue
│ │ │ │ └── list
│ │ │ │ ├── list.scss
│ │ │ │ └── list.vue
│ │ │ ├── article
│ │ │ │ ├── details
│ │ │ │ │ ├── details.scss
│ │ │ │ │ └── details.vue
│ │ │ │ └── list
│ │ │ │ ├── list.scss
│ │ │ │ └── list.vue
│ │ │ ├── category
│ │ │ │ ├── index
│ │ │ │ │ ├── index.scss
│ │ │ │ │ └── index.vue
│ │ │ │ └── list
│ │ │ │ ├── list.scss
│ │ │ │ └── list.vue
│ │ │ ├── coupon
│ │ │ │ ├── coupon.scss
│ │ │ │ └── coupon.vue
│ │ │ ├── form
│ │ │ │ └── details
│ │ │ │ ├── details.scss
│ │ │ │ └── details.vue
│ │ │ ├── goods
│ │ │ │ ├── goodComments
│ │ │ │ │ └── goodComments.vue
│ │ │ │ └── goodDetails
│ │ │ │ └── goodDetails.vue
│ │ │ ├── index
│ │ │ │ ├── cart
│ │ │ │ │ ├── cart.scss
│ │ │ │ │ └── cart.vue
│ │ │ │ ├── custom
│ │ │ │ │ └── custom.vue
│ │ │ │ ├── default
│ │ │ │ │ └── default.vue
│ │ │ │ └── member
│ │ │ │ ├── member.scss
│ │ │ │ └── member.vue
│ │ │ ├── map
│ │ │ │ └── map.vue
│ │ │ ├── member
│ │ │ │ ├── address
│ │ │ │ │ ├── index
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ └── list
│ │ │ │ │ ├── list.scss
│ │ │ │ │ └── list.vue
│ │ │ │ ├── afterSales
│ │ │ │ │ ├── detail
│ │ │ │ │ │ ├── detail.scss
│ │ │ │ │ │ └── detail.vue
│ │ │ │ │ ├── list
│ │ │ │ │ │ └── list.vue
│ │ │ │ │ └── submit
│ │ │ │ │ ├── submit.scss
│ │ │ │ │ └── submit.vue
│ │ │ │ ├── agent
│ │ │ │ │ ├── agreement
│ │ │ │ │ │ ├── agreement.scss
│ │ │ │ │ │ └── agreement.vue
│ │ │ │ │ ├── apply
│ │ │ │ │ │ ├── apply.scss
│ │ │ │ │ │ └── apply.vue
│ │ │ │ │ ├── applyState
│ │ │ │ │ │ ├── applyState.scss
│ │ │ │ │ │ └── applyState.vue
│ │ │ │ │ ├── commissionDetails
│ │ │ │ │ │ ├── commissionDetails.scss
│ │ │ │ │ │ └── commissionDetails.vue
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── index.scss
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ ├── myStore
│ │ │ │ │ │ ├── myStore.scss
│ │ │ │ │ │ └── myStore.vue
│ │ │ │ │ ├── order
│ │ │ │ │ │ ├── order.scss
│ │ │ │ │ │ └── order.vue
│ │ │ │ │ ├── panel
│ │ │ │ │ │ ├── panel.scss
│ │ │ │ │ │ └── panel.vue
│ │ │ │ │ ├── rankings
│ │ │ │ │ │ ├── rankings.scss
│ │ │ │ │ │ └── rankings.vue
│ │ │ │ │ ├── shareLog
│ │ │ │ │ │ ├── shareLog.scss
│ │ │ │ │ │ └── shareLog.vue
│ │ │ │ │ ├── storeSetting
│ │ │ │ │ │ └── storeSetting.vue
│ │ │ │ │ └── team
│ │ │ │ │ ├── team.scss
│ │ │ │ │ └── team.vue
│ │ │ │ ├── balance
│ │ │ │ │ ├── addBankCard
│ │ │ │ │ │ └── addBankCard.vue
│ │ │ │ │ ├── bankcard
│ │ │ │ │ │ ├── bankcard.scss
│ │ │ │ │ │ └── bankcard.vue
│ │ │ │ │ ├── cashlist
│ │ │ │ │ │ └── cashlist.vue
│ │ │ │ │ ├── details
│ │ │ │ │ │ └── details.vue
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── index.scss
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ ├── recharge
│ │ │ │ │ │ └── recharge.vue
│ │ │ │ │ └── withdrawCash
│ │ │ │ │ ├── withdrawCash.scss
│ │ │ │ │ └── withdrawCash.vue
│ │ │ │ ├── collection
│ │ │ │ │ ├── index.scss
│ │ │ │ │ └── index.vue
│ │ │ │ ├── coupon
│ │ │ │ │ ├── index.scss
│ │ │ │ │ └── index.vue
│ │ │ │ ├── distribution
│ │ │ │ │ ├── agreement
│ │ │ │ │ │ ├── agreement.scss
│ │ │ │ │ │ └── agreement.vue
│ │ │ │ │ ├── apply
│ │ │ │ │ │ ├── apply.scss
│ │ │ │ │ │ └── apply.vue
│ │ │ │ │ ├── applyState
│ │ │ │ │ │ ├── applyState.scss
│ │ │ │ │ │ └── applyState.vue
│ │ │ │ │ ├── commissionDetails
│ │ │ │ │ │ ├── commissionDetails.scss
│ │ │ │ │ │ └── commissionDetails.vue
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── index.scss
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ ├── myStore
│ │ │ │ │ │ ├── myStore.scss
│ │ │ │ │ │ └── myStore.vue
│ │ │ │ │ ├── order
│ │ │ │ │ │ ├── order.scss
│ │ │ │ │ │ └── order.vue
│ │ │ │ │ ├── panel
│ │ │ │ │ │ ├── panel.scss
│ │ │ │ │ │ └── panel.vue
│ │ │ │ │ ├── rankings
│ │ │ │ │ │ ├── rankings.scss
│ │ │ │ │ │ └── rankings.vue
│ │ │ │ │ ├── shareLog
│ │ │ │ │ │ ├── shareLog.scss
│ │ │ │ │ │ └── shareLog.vue
│ │ │ │ │ ├── storeSetting
│ │ │ │ │ │ └── storeSetting.vue
│ │ │ │ │ └── team
│ │ │ │ │ ├── team.scss
│ │ │ │ │ └── team.vue
│ │ │ │ ├── history
│ │ │ │ │ ├── index.scss
│ │ │ │ │ └── index.vue
│ │ │ │ ├── integral
│ │ │ │ │ ├── index.scss
│ │ │ │ │ └── index.vue
│ │ │ │ ├── invite
│ │ │ │ │ ├── index.scss
│ │ │ │ │ ├── index.vue
│ │ │ │ │ └── list.vue
│ │ │ │ ├── invoice
│ │ │ │ │ ├── index.scss
│ │ │ │ │ └── index.vue
│ │ │ │ ├── merchant
│ │ │ │ │ ├── detail
│ │ │ │ │ │ ├── detail.scss
│ │ │ │ │ │ └── detail.vue
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── index.scss
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ ├── search
│ │ │ │ │ │ ├── index.scss
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ ├── serviceVerification
│ │ │ │ │ │ ├── index.vue
│ │ │ │ │ │ └── list.vue
│ │ │ │ │ ├── storeList
│ │ │ │ │ │ ├── storeList.scss
│ │ │ │ │ │ └── storeList.vue
│ │ │ │ │ └── takeDelivery
│ │ │ │ │ ├── index.vue
│ │ │ │ │ └── list.vue
│ │ │ │ ├── order
│ │ │ │ │ ├── detail
│ │ │ │ │ │ ├── detail.scss
│ │ │ │ │ │ └── detail.vue
│ │ │ │ │ ├── evaluate
│ │ │ │ │ │ ├── evaluate.scss
│ │ │ │ │ │ └── evaluate.vue
│ │ │ │ │ ├── expressDelivery
│ │ │ │ │ │ ├── expressDelivery.scss
│ │ │ │ │ │ └── expressDelivery.vue
│ │ │ │ │ ├── index
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ └── invitationGroup
│ │ │ │ │ ├── invitationGroup.scss
│ │ │ │ │ └── invitationGroup.vue
│ │ │ │ ├── serviceOrder
│ │ │ │ │ ├── details
│ │ │ │ │ │ ├── details.scss
│ │ │ │ │ │ └── details.vue
│ │ │ │ │ └── index
│ │ │ │ │ └── index.vue
│ │ │ │ └── setting
│ │ │ │ ├── index
│ │ │ │ │ └── index.vue
│ │ │ │ ├── subscription
│ │ │ │ │ └── index.vue
│ │ │ │ └── userInfo
│ │ │ │ ├── index.vue
│ │ │ │ └── password.vue
│ │ │ ├── payment
│ │ │ │ ├── components
│ │ │ │ │ └── coreshop-paymentsByWx.vue
│ │ │ │ ├── pay
│ │ │ │ │ ├── pay.scss
│ │ │ │ │ └── pay.vue
│ │ │ │ ├── result
│ │ │ │ │ ├── result.scss
│ │ │ │ │ └── result.vue
│ │ │ │ └── waiting
│ │ │ │ ├── waiting.scss
│ │ │ │ └── waiting.vue
│ │ │ ├── placeOrder
│ │ │ │ ├── index
│ │ │ │ │ ├── index.scss
│ │ │ │ │ └── index.vue
│ │ │ │ ├── invoice
│ │ │ │ │ ├── invoice.scss
│ │ │ │ │ └── invoice.vue
│ │ │ │ └── storeList
│ │ │ │ ├── storeList.scss
│ │ │ │ └── storeList.vue
│ │ │ ├── search
│ │ │ │ └── search.vue
│ │ │ ├── serviceGoods
│ │ │ │ ├── details
│ │ │ │ │ ├── details.scss
│ │ │ │ │ └── details.vue
│ │ │ │ └── index
│ │ │ │ └── index.vue
│ │ │ ├── share
│ │ │ │ ├── jump
│ │ │ │ │ └── jump.vue
│ │ │ │ └── sharePoster
│ │ │ │ ├── sharePoster.scss
│ │ │ │ └── sharePoster.vue
│ │ │ ├── storeMap
│ │ │ │ ├── storeMap.scss
│ │ │ │ └── storeMap.vue
│ │ │ └── template.vue
│ │ ├── pages.json
│ │ ├── static
│ │ │ ├── images
│ │ │ │ ├── common
│ │ │ │ │ ├── address-line.png
│ │ │ │ │ ├── anc.png
│ │ │ │ │ ├── are.png
│ │ │ │ │ ├── arg.png
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── camera.png
│ │ │ │ │ ├── del.png
│ │ │ │ │ ├── empty-banner.png
│ │ │ │ │ ├── empty.png
│ │ │ │ │ ├── invoice.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu.png
│ │ │ │ │ ├── seller-content.png
│ │ │ │ │ ├── share-friend.png
│ │ │ │ │ ├── share-poster.png
│ │ │ │ │ ├── tab-ic-hom-selected.png
│ │ │ │ │ ├── tab-ic-hom-unselected.png
│ │ │ │ │ ├── tab-ic-me-selected.png
│ │ │ │ │ ├── tab-ic-me-unselected.png
│ │ │ │ │ ├── user_black.png
│ │ │ │ │ └── yl.png
│ │ │ │ ├── coupon
│ │ │ │ │ ├── coupon-element.png
│ │ │ │ │ └── element-ic.png
│ │ │ │ ├── distribution
│ │ │ │ │ ├── 01.png
│ │ │ │ │ ├── 02.png
│ │ │ │ │ ├── 03.png
│ │ │ │ │ ├── distribution_icon1.png
│ │ │ │ │ ├── distribution_icon2.png
│ │ │ │ │ ├── distribution_icon3.png
│ │ │ │ │ ├── distribution_icon4.png
│ │ │ │ │ ├── distribution_icon5.png
│ │ │ │ │ ├── distribution_icon6.png
│ │ │ │ │ ├── distribution_icon7.png
│ │ │ │ │ ├── distribution_icon8.png
│ │ │ │ │ ├── wxh5.png
│ │ │ │ │ └── wxxcx.png
│ │ │ │ ├── good
│ │ │ │ │ └── titlebg.png
│ │ │ │ ├── indexMenus
│ │ │ │ │ ├── index01_1.png
│ │ │ │ │ ├── index01.png
│ │ │ │ │ ├── index02_1.png
│ │ │ │ │ ├── index02.png
│ │ │ │ │ ├── index03_1.png
│ │ │ │ │ ├── index03.png
│ │ │ │ │ ├── index04_1.png
│ │ │ │ │ └── index04.png
│ │ │ │ ├── login
│ │ │ │ │ └── nologin_bg.png
│ │ │ │ ├── logo
│ │ │ │ │ ├── logo2.png
│ │ │ │ │ └── logo.png
│ │ │ │ ├── map
│ │ │ │ │ └── location.png
│ │ │ │ ├── my
│ │ │ │ │ ├── 1.png
│ │ │ │ │ └── 2.png
│ │ │ │ ├── payments
│ │ │ │ │ ├── alipay.png
│ │ │ │ │ ├── balancepay.png
│ │ │ │ │ ├── offline.png
│ │ │ │ │ ├── pay.png
│ │ │ │ │ ├── wait-pay.png
│ │ │ │ │ └── wechatpay.png
│ │ │ │ └── pinTuan
│ │ │ │ └── pinTuanListBg.png
│ │ │ └── style
│ │ │ ├── coreCommon.scss
│ │ │ └── coreTheme.scss
│ │ ├── uni.scss
│ │ └── uview-ui
│ │ ├── components
│ │ │ ├── u-action-sheet
│ │ │ │ └── u-action-sheet.vue
│ │ │ ├── u-alert-tips
│ │ │ │ └── u-alert-tips.vue
│ │ │ ├── u-avatar
│ │ │ │ └── u-avatar.vue
│ │ │ ├── u-avatar-cropper
│ │ │ │ ├── u-avatar-cropper.vue
│ │ │ │ └── weCropper.js
│ │ │ ├── u-back-top
│ │ │ │ └── u-back-top.vue
│ │ │ ├── u-badge
│ │ │ │ └── u-badge.vue
│ │ │ ├── u-button
│ │ │ │ └── u-button.vue
│ │ │ ├── u-calendar
│ │ │ │ └── u-calendar.vue
│ │ │ ├── u-card
│ │ │ │ └── u-card.vue
│ │ │ ├── u-car-keyboard
│ │ │ │ └── u-car-keyboard.vue
│ │ │ ├── u-cell-group
│ │ │ │ └── u-cell-group.vue
│ │ │ ├── u-cell-item
│ │ │ │ └── u-cell-item.vue
│ │ │ ├── u-checkbox
│ │ │ │ └── u-checkbox.vue
│ │ │ ├── u-checkbox-group
│ │ │ │ └── u-checkbox-group.vue
│ │ │ ├── u-circle-progress
│ │ │ │ ├── u-circle-progress.vue
│ │ │ │ └── u-line-progress
│ │ │ │ └── u-line-progress.vue
│ │ │ ├── u-col
│ │ │ │ └── u-col.vue
│ │ │ ├── u-collapse
│ │ │ │ └── u-collapse.vue
│ │ │ ├── u-collapse-item
│ │ │ │ └── u-collapse-item.vue
│ │ │ ├── u-column-notice
│ │ │ │ └── u-column-notice.vue
│ │ │ ├── u-count-down
│ │ │ │ └── u-count-down.vue
│ │ │ ├── u-count-to
│ │ │ │ └── u-count-to.vue
│ │ │ ├── u-divider
│ │ │ │ └── u-divider.vue
│ │ │ ├── u-dropdown
│ │ │ │ └── u-dropdown.vue
│ │ │ ├── u-dropdown-item
│ │ │ │ └── u-dropdown-item.vue
│ │ │ ├── u-empty
│ │ │ │ └── u-empty.vue
│ │ │ ├── u-field
│ │ │ │ └── u-field.vue
│ │ │ ├── u-form
│ │ │ │ └── u-form.vue
│ │ │ ├── u-form-item
│ │ │ │ └── u-form-item.vue
│ │ │ ├── u-full-screen
│ │ │ │ └── u-full-screen.vue
│ │ │ ├── u-gap
│ │ │ │ └── u-gap.vue
│ │ │ ├── u-grid
│ │ │ │ └── u-grid.vue
│ │ │ ├── u-grid-item
│ │ │ │ └── u-grid-item.vue
│ │ │ ├── u-icon
│ │ │ │ └── u-icon.vue
│ │ │ ├── u-image
│ │ │ │ └── u-image.vue
│ │ │ ├── u-index-anchor
│ │ │ │ └── u-index-anchor.vue
│ │ │ ├── u-index-list
│ │ │ │ └── u-index-list.vue
│ │ │ ├── u-input
│ │ │ │ └── u-input.vue
│ │ │ ├── u-keyboard
│ │ │ │ └── u-keyboard.vue
│ │ │ ├── u-lazy-load
│ │ │ │ └── u-lazy-load.vue
│ │ │ ├── u-line
│ │ │ │ └── u-line.vue
│ │ │ ├── u-line-progress
│ │ │ │ └── u-line-progress.vue
│ │ │ ├── u-link
│ │ │ │ └── u-link.vue
│ │ │ ├── u-loading
│ │ │ │ └── u-loading.vue
│ │ │ ├── u-loading-page
│ │ │ │ └── u-loading-page.vue
│ │ │ ├── u-loadmore
│ │ │ │ └── u-loadmore.vue
│ │ │ ├── u-mask
│ │ │ │ └── u-mask.vue
│ │ │ ├── u-message-input
│ │ │ │ └── u-message-input.vue
│ │ │ ├── u-modal
│ │ │ │ └── u-modal.vue
│ │ │ ├── u-navbar
│ │ │ │ └── u-navbar.vue
│ │ │ ├── u-no-network
│ │ │ │ └── u-no-network.vue
│ │ │ ├── u-notice-bar
│ │ │ │ └── u-notice-bar.vue
│ │ │ ├── u-number-box
│ │ │ │ └── u-number-box.vue
│ │ │ ├── u-number-keyboard
│ │ │ │ └── u-number-keyboard.vue
│ │ │ ├── u-parse
│ │ │ │ ├── libs
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── CssHandler.js
│ │ │ │ │ ├── handler.wxs
│ │ │ │ │ ├── MpHtmlParser.js
│ │ │ │ │ └── trees.vue
│ │ │ │ └── u-parse.vue
│ │ │ ├── u-picker
│ │ │ │ └── u-picker.vue
│ │ │ ├── u-popup
│ │ │ │ └── u-popup.vue
│ │ │ ├── u-radio
│ │ │ │ └── u-radio.vue
│ │ │ ├── u-radio-group
│ │ │ │ └── u-radio-group.vue
│ │ │ ├── u-rate
│ │ │ │ └── u-rate.vue
│ │ │ ├── u-read-more
│ │ │ │ └── u-read-more.vue
│ │ │ ├── u-row
│ │ │ │ └── u-row.vue
│ │ │ ├── u-row-notice
│ │ │ │ └── u-row-notice.vue
│ │ │ ├── u-search
│ │ │ │ └── u-search.vue
│ │ │ ├── u-section
│ │ │ │ └── u-section.vue
│ │ │ ├── u-select
│ │ │ │ └── u-select.vue
│ │ │ ├── u-skeleton
│ │ │ │ └── u-skeleton.vue
│ │ │ ├── u-slider
│ │ │ │ └── u-slider.vue
│ │ │ ├── u-steps
│ │ │ │ └── u-steps.vue
│ │ │ ├── u-sticky
│ │ │ │ └── u-sticky.vue
│ │ │ ├── u-subsection
│ │ │ │ └── u-subsection.vue
│ │ │ ├── u-swipe-action
│ │ │ │ └── u-swipe-action.vue
│ │ │ ├── u-swiper
│ │ │ │ └── u-swiper.vue
│ │ │ ├── u-switch
│ │ │ │ └── u-switch.vue
│ │ │ ├── u-tabbar
│ │ │ │ └── u-tabbar.vue
│ │ │ ├── u-table
│ │ │ │ └── u-table.vue
│ │ │ ├── u-tabs
│ │ │ │ └── u-tabs.vue
│ │ │ ├── u-tabs-swiper
│ │ │ │ └── u-tabs-swiper.vue
│ │ │ ├── u-tag
│ │ │ │ └── u-tag.vue
│ │ │ ├── u-td
│ │ │ │ └── u-td.vue
│ │ │ ├── u-th
│ │ │ │ └── u-th.vue
│ │ │ ├── u-time-line
│ │ │ │ └── u-time-line.vue
│ │ │ ├── u-time-line-item
│ │ │ │ └── u-time-line-item.vue
│ │ │ ├── u-toast
│ │ │ │ └── u-toast.vue
│ │ │ ├── u-top-tips
│ │ │ │ └── u-top-tips.vue
│ │ │ ├── u-tr
│ │ │ │ └── u-tr.vue
│ │ │ ├── u-upload
│ │ │ │ └── u-upload.vue
│ │ │ ├── u-verification-code
│ │ │ │ └── u-verification-code.vue
│ │ │ ├── uview-v1
│ │ │ │ └── uview-v1.vue
│ │ │ └── u-waterfall
│ │ │ └── u-waterfall.vue
│ │ ├── iconfont.css
│ │ ├── index.js
│ │ ├── index.scss
│ │ ├── libs
│ │ │ ├── config
│ │ │ │ ├── config.js
│ │ │ │ └── zIndex.js
│ │ │ ├── css
│ │ │ │ ├── color.scss
│ │ │ │ ├── common.scss
│ │ │ │ ├── style.components.scss
│ │ │ │ ├── style.h5.scss
│ │ │ │ ├── style.mp.scss
│ │ │ │ ├── style.nvue.scss
│ │ │ │ └── style.vue.scss
│ │ │ ├── function
│ │ │ │ ├── $parent.js
│ │ │ │ ├── addUnit.js
│ │ │ │ ├── bem.js
│ │ │ │ ├── colorGradient.js
│ │ │ │ ├── color.js
│ │ │ │ ├── debounce.js
│ │ │ │ ├── deepClone.js
│ │ │ │ ├── deepMerge.js
│ │ │ │ ├── getParent.js
│ │ │ │ ├── guid.js
│ │ │ │ ├── md5.js
│ │ │ │ ├── queryParams.js
│ │ │ │ ├── randomArray.js
│ │ │ │ ├── random.js
│ │ │ │ ├── route.js
│ │ │ │ ├── sys.js
│ │ │ │ ├── test.js
│ │ │ │ ├── throttle.js
│ │ │ │ ├── timeFormat.js
│ │ │ │ ├── timeFrom.js
│ │ │ │ ├── toast.js
│ │ │ │ ├── trim.js
│ │ │ │ └── type2icon.js
│ │ │ ├── mixin
│ │ │ │ ├── mixin.js
│ │ │ │ └── mpShare.js
│ │ │ ├── request
│ │ │ │ └── index.js
│ │ │ ├── store
│ │ │ │ └── index.js
│ │ │ └── util
│ │ │ ├── area.js
│ │ │ ├── async-validator.js
│ │ │ ├── city.js
│ │ │ ├── emitter.js
│ │ │ └── province.js
│ │ ├── LICENSE
│ │ ├── package.json
│ │ ├── README.md
│ │ └── theme.scss
│ └── resource
│ ├── psd
│ │ ├── logo2.png
│ │ ├── logo2.psd
│ │ ├── swiper-1.png
│ │ ├── swiper-1.psd
│ │ ├── swiper-2.png
│ │ ├── swiper-2.psd
│ │ ├── swiper-3.png
│ │ ├── swiper-3.psd
│ │ ├── swiper-background-1.png
│ │ ├── swiper-background-2.png
│ │ └── swiper-background-3.png
│ └── static
│ └── images
│ ├── agent
│ │ ├── applyBg.jpg
│ │ └── applyBg.psd
│ ├── common
│ │ ├── camera.png
│ │ ├── close.png
│ │ ├── del.png
│ │ ├── FLOWCY.jpg
│ │ ├── ic-location.png
│ │ ├── ic-unfold.png
│ │ ├── non_real_name.png
│ │ ├── real_name.png
│ │ └── reward.png
│ ├── default
│ │ ├── swiper-background-1.png
│ │ ├── swiper-background-2.png
│ │ └── swiper-background-3.png
│ ├── distribution
│ │ ├── card_bg.png
│ │ ├── commission_bg1.jpg
│ │ └── commission_card_bg.png
│ ├── empty
│ │ ├── address.png
│ │ ├── authority.png
│ │ ├── cart.png
│ │ ├── collect.png
│ │ ├── comment.png
│ │ ├── coupon.png
│ │ ├── data.png
│ │ ├── history.png
│ │ ├── messageList.png
│ │ ├── message.png
│ │ ├── news.png
│ │ ├── order.png
│ │ ├── page.png
│ │ ├── search.png
│ │ └── wifi.png
│ ├── logo
│ │ └── logo.png
│ ├── merchant
│ │ └── shop_headbg.png
│ ├── my
│ │ └── invite-bg.png
│ └── reward
│ ├── wx.png
│ └── zfb.jpg
├── CoreCms.Net.Utility
│ ├── CoreCms.Net.Utility.csproj
│ ├── Extensions
│ │ ├── ConvertObject.cs
│ │ ├── ObjectExtensions.cs
│ │ └── SerializeExtensions.cs
│ └── Helper
│ ├── AreaHelper.cs
│ ├── ArticleHelper.cs
│ ├── CommonHelper.cs
│ ├── DateHelper.cs
│ ├── EnumHelper.cs
│ ├── ExcelHelper.cs
│ ├── FormHelper.cs
│ ├── GoodsHelper.cs
│ ├── HttpHelper.cs
│ ├── JsonFileHelper.cs
│ ├── MessageHelper.cs
│ ├── OrderHelper.cs
│ ├── PinTuanHelper.cs
│ ├── PromotionHelper.cs
│ ├── ReportsHelper.cs
│ ├── ShareHelper.cs
│ ├── SKUHelper.cs
│ ├── SMSHelper.cs
│ ├── SysMenuHelper.cs
│ ├── SysOrganizationHelper.cs
│ ├── UpLoadHelper.cs
│ └── UserHelper.cs
├── CoreCms.Net.Web.Admin
│ ├── appsettings.Development.json
│ ├── appsettings.json
│ ├── compilerconfig.json
│ ├── compilerconfig.json.defaults
│ ├── Controllers
│ │ ├── Advert
│ │ │ ├── CoreCmsAdvertisementController.cs
│ │ │ └── CoreCmsAdvertPositionController.cs
│ │ ├── Agent
│ │ │ ├── CoreCmsAgentController.cs
│ │ │ ├── CoreCmsAgentGoodsController.cs
│ │ │ ├── CoreCmsAgentGradeController.cs
│ │ │ ├── CoreCmsAgentOrderController.cs
│ │ │ └── CoreCmsAgentSettingController.cs
│ │ ├── Article
│ │ │ ├── CoreCmsArticleController.cs
│ │ │ └── CoreCmsArticleTypeController.cs
│ │ ├── Com
│ │ │ ├── LoginController.cs
│ │ │ └── ToolsController.cs
│ │ ├── Distribution
│ │ │ ├── CoreCmsDistributionController.cs
│ │ │ ├── CoreCmsDistributionGradeController.cs
│ │ │ ├── CoreCmsDistributionOrderController.cs
│ │ │ ├── CoreCmsDistributionResultController.cs
│ │ │ └── CoreCmsDistributionSettingController.cs
│ │ ├── Financial
│ │ │ ├── CoreCmsBillPaymentsController.cs
│ │ │ ├── CoreCmsBillRefundController.cs
│ │ │ ├── CoreCmsInvoiceController.cs
│ │ │ └── CoreCmsPaymentsController.cs
│ │ ├── Good
│ │ │ ├── CoreCmsBrandController.cs
│ │ │ ├── CoreCmsGoodsCategoryController.cs
│ │ │ ├── CoreCmsGoodsCommentController.cs
│ │ │ ├── CoreCmsGoodsController.cs
│ │ │ ├── CoreCmsGoodsParamsController.cs
│ │ │ ├── CoreCmsGoodsTypeSpecController.cs
│ │ │ └── CoreCmsProductsController.cs
│ │ ├── IntelligentForms
│ │ │ ├── CoreCmsFormController.cs
│ │ │ └── CoreCmsFormSubmitController.cs
│ │ ├── Message
│ │ │ ├── CoreCmsMessageCenterController.cs
│ │ │ ├── CoreCmsSmsController.cs
│ │ │ └── CoreCmsSmsSettingController.cs
│ │ ├── Order
│ │ │ ├── CoreCmsBillAftersalesController.cs
│ │ │ ├── CoreCmsBillDeliveryController.cs
│ │ │ ├── CoreCmsBillLadingController.cs
│ │ │ ├── CoreCmsBillReshipController.cs
│ │ │ └── CoreCmsOrderController.cs
│ │ ├── PinTuan
│ │ │ ├── CoreCmsPintuanRecordController.cs
│ │ │ └── CoreCmsPintuanRuleController.cs
│ │ ├── Promotion
│ │ │ └── CoreCmsPromotionController.cs
│ │ ├── Reports
│ │ │ └── CoreCmsReportsController.cs
│ │ ├── ServiceGoods
│ │ │ ├── CoreCmsServicesController.cs
│ │ │ └── CoreCmsUserServicesOrderController.cs
│ │ ├── Shop
│ │ │ ├── CoreCmsAreaController.cs
│ │ │ ├── CoreCmsLogisticsController.cs
│ │ │ ├── CoreCmsNoticeController.cs
│ │ │ ├── CoreCmsPagesController.cs
│ │ │ ├── CoreCmsPagesItemsController.cs
│ │ │ ├── CoreCmsServiceDescriptionController.cs
│ │ │ ├── CoreCmsSettingController.cs
│ │ │ ├── CoreCmsShipController.cs
│ │ │ └── CoreCmsStoreController.cs
│ │ ├── Stock
│ │ │ ├── CoreCmsStockController.cs
│ │ │ └── CoreCmsStockLogController.cs
│ │ ├── System
│ │ │ ├── CodeGeneratorController.cs
│ │ │ ├── SysDictionaryController.cs
│ │ │ ├── SysDictionaryDataController.cs
│ │ │ ├── SysLoginRecordController.cs
│ │ │ ├── SysMenuController.cs
│ │ │ ├── SysNLogRecordsController.cs
│ │ │ ├── SysOperRecordController.cs
│ │ │ ├── SysOrganizationController.cs
│ │ │ ├── SysRoleController.cs
│ │ │ ├── SysRoleMenuController.cs
│ │ │ ├── SysTaskLogController.cs
│ │ │ ├── SysUserController.cs
│ │ │ └── SysUserRoleController.cs
│ │ ├── User
│ │ │ ├── CoreCmsUserBalanceController.cs
│ │ │ ├── CoreCmsUserController.cs
│ │ │ ├── CoreCmsUserGradeController.cs
│ │ │ └── CoreCmsUserTocashController.cs
│ │ ├── CoreCmsUserWeChatInfoController.cs
│ │ └── CoreCmsUserWeChatMsgTemplateController.cs
│ ├── CoreCms.Net.Web.Admin.csproj
│ ├── Dockerfile
│ ├── Doc.xml
│ ├── illegalWord
│ │ ├── IllegalKeywords.txt
│ │ └── 说明.txt
│ ├── Infrastructure
│ │ ├── ApiExplorerIgnores.cs
│ │ ├── GlobalExceptionsFilterForAdmin.cs
│ │ └── RequiredErrorForAdmin.cs
│ ├── NLog.config
│ ├── Program.cs
│ ├── Properties
│ │ └── launchSettings.json
│ ├── wwwroot
│ │ ├── files
│ │ │ ├── 2021-05-01
│ │ │ │ └── 20210501075941520-CoreCmsBillDelivery导出(查询结果).xls
│ │ │ └── 2021-05-02
│ │ │ └── 20210502104200309-数据库表导出.xls
│ │ ├── index.html
│ │ ├── lib
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap-grid.css
│ │ │ │ │ ├── bootstrap-grid.css.map
│ │ │ │ │ ├── bootstrap-grid.min.css
│ │ │ │ │ ├── bootstrap-grid.min.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ │ ├── bootstrap-reboot.css
│ │ │ │ │ ├── bootstrap-reboot.css.map
│ │ │ │ │ ├── bootstrap-reboot.min.css
│ │ │ │ │ └── bootstrap-reboot.min.css.map
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.bundle.js
│ │ │ │ ├── bootstrap.bundle.js.map
│ │ │ │ ├── bootstrap.bundle.min.js
│ │ │ │ ├── bootstrap.bundle.min.js.map
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.js.map
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ └── bootstrap.min.js.map
│ │ │ ├── ckeditor5
│ │ │ │ ├── ckeditor.js
│ │ │ │ ├── ckeditor.js.map
│ │ │ │ ├── index.html
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── sample
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── sample.css
│ │ │ │ │ └── img
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── github.svg
│ │ │ │ │ ├── logo.svg
│ │ │ │ │ └── umbrellas.jpg
│ │ │ │ └── translations
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── ast.js
│ │ │ │ ├── az.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-au.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── kk.js
│ │ │ │ ├── km.js
│ │ │ │ ├── kn.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── ms.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── ne.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── oc.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tk.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── custom
│ │ │ │ ├── css
│ │ │ │ │ ├── iconfont.css
│ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ ├── iconfont.woff
│ │ │ │ │ ├── iconfont.woff2
│ │ │ │ │ ├── style.css
│ │ │ │ │ ├── style.less
│ │ │ │ │ └── style.min.css
│ │ │ │ ├── element
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── element-icons.ttf
│ │ │ │ │ │ └── element-icons.woff
│ │ │ │ │ ├── index.css
│ │ │ │ │ ├── index.js
│ │ │ │ │ └── main.js
│ │ │ │ └── js
│ │ │ │ ├── main.js
│ │ │ │ ├── sortable.min.js
│ │ │ │ ├── vuedraggable.min.js
│ │ │ │ └── vue.min.js
│ │ │ ├── jquery
│ │ │ │ ├── doT.min.js
│ │ │ │ ├── jquery-2.1.4.js
│ │ │ │ ├── jquery-2.1.4.min.js
│ │ │ │ ├── jquery-3.3.1.js
│ │ │ │ ├── jquery-3.3.1.min.js
│ │ │ │ ├── jquery-3.3.1.min.map
│ │ │ │ ├── jquery.fileDownload.js
│ │ │ │ ├── jquery.jcarousellite.min.js
│ │ │ │ ├── jquery.unobtrusive-ajax.js
│ │ │ │ ├── jquery.unobtrusive-ajax.min.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ │ ├── jquery.validate.unobtrusive.min.js
│ │ │ │ ├── jquery.validate-vsdoc.js
│ │ │ │ ├── lazyloadv3.js
│ │ │ │ └── LICENSE.txt
│ │ │ ├── layui
│ │ │ │ ├── css
│ │ │ │ │ └── layui.css
│ │ │ │ ├── font
│ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ ├── iconfont.woff
│ │ │ │ │ └── iconfont.woff2
│ │ │ │ └── layui.js
│ │ │ ├── layuiAdmin
│ │ │ │ ├── config.js
│ │ │ │ ├── controller
│ │ │ │ │ ├── breadcrumb.js
│ │ │ │ │ ├── common.js
│ │ │ │ │ ├── contextMenu.js
│ │ │ │ │ ├── contlist.js
│ │ │ │ │ ├── coredropdown.css
│ │ │ │ │ ├── coredropdown.js
│ │ │ │ │ ├── Cropper.css
│ │ │ │ │ ├── cropperImg.js
│ │ │ │ │ ├── Cropper.js
│ │ │ │ │ ├── iconPicker.js
│ │ │ │ │ ├── iconSelected.js
│ │ │ │ │ ├── tableX.js
│ │ │ │ │ ├── treeTable.css
│ │ │ │ │ ├── treeTable.js
│ │ │ │ │ ├── xmSelect.js
│ │ │ │ │ ├── zTree
│ │ │ │ │ │ └── css
│ │ │ │ │ │ ├── metroStyle
│ │ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ │ ├── line_conn.png
│ │ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ │ ├── metro.gif
│ │ │ │ │ │ │ │ └── metro.png
│ │ │ │ │ │ │ └── metroStyle.css
│ │ │ │ │ │ └── zTreeStyle
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── diy
│ │ │ │ │ │ │ │ ├── 1_close.png
│ │ │ │ │ │ │ │ ├── 1_open.png
│ │ │ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ │ │ └── 9.png
│ │ │ │ │ │ │ ├── line_conn.gif
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ │ │ └── zTreeStandard.png
│ │ │ │ │ │ └── zTreeStyle.css
│ │ │ │ │ └── zTree.js
│ │ │ │ ├── index.es5.js
│ │ │ │ ├── index.es5.min.js
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── admin.js
│ │ │ │ │ ├── extend
│ │ │ │ │ │ ├── coreHelper.js
│ │ │ │ │ │ ├── dltable.js
│ │ │ │ │ │ ├── dtree.js
│ │ │ │ │ │ ├── echarts.js
│ │ │ │ │ │ ├── echartsTheme.js
│ │ │ │ │ │ ├── treeGrid.css
│ │ │ │ │ │ └── treeGrid.js
│ │ │ │ │ └── view.js
│ │ │ │ └── style
│ │ │ │ ├── admin.css
│ │ │ │ ├── dtree
│ │ │ │ │ ├── dtree.css
│ │ │ │ │ ├── dtree.js
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── dtreefont.css
│ │ │ │ │ │ ├── dtreefont.eot
│ │ │ │ │ │ ├── dtreefont.svg
│ │ │ │ │ │ ├── dtreefont.ttf
│ │ │ │ │ │ ├── dtreefont.woff
│ │ │ │ │ │ └── icons.json
│ │ │ │ │ └── 开发者日志.txt
│ │ │ │ ├── login.css
│ │ │ │ ├── res
│ │ │ │ │ ├── bg-none.jpg
│ │ │ │ │ ├── layui-logo.jpg
│ │ │ │ │ ├── logo-black.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── logo.psd
│ │ │ │ │ ├── noImage.jpg
│ │ │ │ │ ├── noImage.psd
│ │ │ │ │ ├── one-big.png
│ │ │ │ │ ├── one-small.png
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── character.jpg
│ │ │ │ │ │ ├── huge.jpg
│ │ │ │ │ │ └── portrait.png
│ │ │ │ │ ├── two-small.png
│ │ │ │ │ ├── userwx_1.jpg
│ │ │ │ │ ├── userwx_2.jpg
│ │ │ │ │ ├── userwx_3.jpg
│ │ │ │ │ ├── userwx_4.jpg
│ │ │ │ │ ├── userwx_5.jpg
│ │ │ │ │ └── userwx_6.jpg
│ │ │ │ └── template.css
│ │ │ ├── lodop
│ │ │ │ ├── CLodop_Setup_for_Win32NT.exe
│ │ │ │ ├── install_lodop32.exe
│ │ │ │ ├── install_lodop64.exe
│ │ │ │ └── LodopFuncs.js
│ │ │ └── render-html-to-pdf
│ │ │ ├── html2canvas.bak.js
│ │ │ ├── html2canvas.js
│ │ │ ├── html2canvas.min.js
│ │ │ ├── html2canvas.svg.js
│ │ │ ├── html2canvas.svg.min.js
│ │ │ └── jsPdf.debug.js
│ │ ├── robots.txt
│ │ ├── static
│ │ │ ├── css
│ │ │ │ ├── documentEditor.css
│ │ │ │ ├── documentEditor.less
│ │ │ │ ├── documentEditor.min.css
│ │ │ │ ├── login.css
│ │ │ │ ├── overWrite.css
│ │ │ │ ├── overWrite.less
│ │ │ │ └── overWrite.min.css
│ │ │ ├── images
│ │ │ │ └── common
│ │ │ │ ├── coreshop.png
│ │ │ │ ├── coreshop.psd
│ │ │ │ ├── empty-banner.png
│ │ │ │ ├── empty.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── ic-car.png
│ │ │ │ ├── image-four-column.png
│ │ │ │ ├── image-one-column.png
│ │ │ │ ├── image-one-left.png
│ │ │ │ ├── image-three-column.png
│ │ │ │ ├── logo2.png
│ │ │ │ ├── logoMin.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── model-title.png
│ │ │ │ ├── model-title.psd
│ │ │ │ ├── one-big.png
│ │ │ │ ├── one-small.png
│ │ │ │ ├── two-small.png
│ │ │ │ ├── userwx_1.jpg
│ │ │ │ ├── userwx_2.jpg
│ │ │ │ ├── userwx_3.jpg
│ │ │ │ ├── userwx_4.jpg
│ │ │ │ ├── userwx_5.jpg
│ │ │ │ └── userwx_6.jpg
│ │ │ └── js
│ │ │ └── common.js
│ │ └── views
│ │ ├── agent
│ │ │ ├── agentGoods
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── agentGrade
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── agentOrder
│ │ │ │ ├── details.html
│ │ │ │ └── index.html
│ │ │ ├── agents
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ └── setting
│ │ │ └── index.html
│ │ ├── common
│ │ │ ├── getArticles.html
│ │ │ ├── getArticleTypes.html
│ │ │ ├── getForms.html
│ │ │ ├── getGoodAndSku.html
│ │ │ ├── getGoodId.html
│ │ │ ├── getGoodIds.html
│ │ │ ├── getGoodList.html
│ │ │ ├── getGroupIds.html
│ │ │ ├── getNoticeIds.html
│ │ │ ├── getPingTuanIds.html
│ │ │ ├── getProductsIds.html
│ │ │ ├── getQQMap.html
│ │ │ ├── getServiceIds.html
│ │ │ └── getUpLoad.html
│ │ ├── content
│ │ │ ├── advert
│ │ │ │ ├── advertisement
│ │ │ │ │ ├── create.html
│ │ │ │ │ ├── edit.html
│ │ │ │ │ ├── getArticle.html
│ │ │ │ │ ├── getArticleType.html
│ │ │ │ │ ├── getGoods.html
│ │ │ │ │ └── index.html
│ │ │ │ └── advertposition
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── article
│ │ │ │ ├── articles
│ │ │ │ │ ├── create.html
│ │ │ │ │ ├── edit.html
│ │ │ │ │ └── index.html
│ │ │ │ └── articletype
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── customform
│ │ │ │ ├── form
│ │ │ │ │ ├── create.html
│ │ │ │ │ ├── details.html
│ │ │ │ │ ├── edit.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── qrCode.html
│ │ │ │ └── formsubmit
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── notice
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── reports
│ │ │ │ ├── goodscollection.html
│ │ │ │ ├── goods.html
│ │ │ │ ├── order.html
│ │ │ │ └── payments.html
│ │ │ └── stock
│ │ │ ├── products
│ │ │ │ ├── details.html
│ │ │ │ └── index.html
│ │ │ ├── stocklog
│ │ │ │ └── index.html
│ │ │ └── stocks
│ │ │ ├── create.html
│ │ │ ├── details.html
│ │ │ └── index.html
│ │ ├── distribution
│ │ │ ├── distributor
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── grade
│ │ │ │ ├── conditionCreate.html
│ │ │ │ ├── conditionEdit.html
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── index.html
│ │ │ │ ├── resultCreate.html
│ │ │ │ └── resultEdit.html
│ │ │ ├── order
│ │ │ │ ├── details.html
│ │ │ │ └── index.html
│ │ │ └── setting
│ │ │ └── index.html
│ │ ├── financial
│ │ │ ├── billpayments
│ │ │ │ ├── details.html
│ │ │ │ └── index.html
│ │ │ ├── billrefund
│ │ │ │ ├── audit.html
│ │ │ │ ├── details.html
│ │ │ │ └── index.html
│ │ │ ├── invoice
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── payments
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── userbalance
│ │ │ │ └── index.html
│ │ │ └── usertocash
│ │ │ └── index.html
│ │ ├── good
│ │ │ ├── goods
│ │ │ │ ├── batchModifyPrice.html
│ │ │ │ ├── batchModifyStock.html
│ │ │ │ ├── create.html
│ │ │ │ ├── delLabel.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── getLabel.html
│ │ │ │ └── index.html
│ │ │ ├── goodsbrand
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── goodscategory
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── goodscomment
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── goodsparams
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── goodstypespec
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ └── servicegoods
│ │ │ ├── create.html
│ │ │ ├── details.html
│ │ │ ├── edit.html
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── layout.html
│ │ ├── order
│ │ │ ├── billaftersales
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── billdelivery
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── billlading
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── billreship
│ │ │ │ ├── details.html
│ │ │ │ └── index.html
│ │ │ ├── orders
│ │ │ │ ├── details.html
│ │ │ │ ├── distribution.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── index.html
│ │ │ │ ├── pay.html
│ │ │ │ ├── ship.html
│ │ │ │ ├── shopping.html
│ │ │ │ ├── tcorderdetails.html
│ │ │ │ └── union.html
│ │ │ └── servicesOrder
│ │ │ ├── create.html
│ │ │ ├── details.html
│ │ │ ├── edit.html
│ │ │ └── index.html
│ │ ├── promotion
│ │ │ ├── coupon
│ │ │ │ ├── couponlist.html
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── group
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── index.html
│ │ │ │ └── resultcreate.html
│ │ │ ├── pintuan
│ │ │ │ ├── pintuanrecord
│ │ │ │ │ └── index.html
│ │ │ │ └── pintuanrule
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ └── promotion
│ │ │ ├── conditioncreate.html
│ │ │ ├── conditionedit.html
│ │ │ ├── create.html
│ │ │ ├── edit.html
│ │ │ ├── index.html
│ │ │ ├── resultcreate.html
│ │ │ └── resultedit.html
│ │ ├── shop
│ │ │ ├── area
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── logistics
│ │ │ │ └── index.html
│ │ │ ├── message
│ │ │ │ ├── messagecenter
│ │ │ │ │ └── index.html
│ │ │ │ ├── smslog
│ │ │ │ │ └── index.html
│ │ │ │ ├── smssetting
│ │ │ │ │ └── index.html
│ │ │ │ └── wechatappletsmessage
│ │ │ │ └── index.html
│ │ │ ├── pages
│ │ │ │ ├── create.html
│ │ │ │ ├── design.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── index.html
│ │ │ │ └── qrCode.html
│ │ │ ├── pagesitems
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── servicedescription
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── setting
│ │ │ │ └── index.html
│ │ │ ├── ship
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ └── store
│ │ │ ├── clerkCreate.html
│ │ │ ├── clerkedit.html
│ │ │ ├── create.html
│ │ │ ├── edit.html
│ │ │ └── index.html
│ │ ├── system
│ │ │ ├── about.html
│ │ │ ├── get.html
│ │ │ ├── logs
│ │ │ │ ├── sysloginrecord
│ │ │ │ │ ├── details.html
│ │ │ │ │ └── index.html
│ │ │ │ ├── sysnlogrecords
│ │ │ │ │ ├── details.html
│ │ │ │ │ └── index.html
│ │ │ │ └── systasklog
│ │ │ │ ├── details.html
│ │ │ │ └── index.html
│ │ │ ├── more.html
│ │ │ ├── setManager
│ │ │ │ ├── info.html
│ │ │ │ └── password.html
│ │ │ ├── sysCodeGenerator
│ │ │ │ └── index.html
│ │ │ ├── sysdictionary
│ │ │ │ ├── createData.html
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── editData.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── sysmenu
│ │ │ │ ├── create.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── sysorganization
│ │ │ │ ├── create.html
│ │ │ │ ├── createUser.html
│ │ │ │ ├── details.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── editUser.html
│ │ │ │ ├── index2.html
│ │ │ │ └── index.html
│ │ │ ├── sysrole
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ ├── sysuser
│ │ │ │ ├── create.html
│ │ │ │ ├── edit.html
│ │ │ │ └── index.html
│ │ │ └── theme.html
│ │ ├── temp.html
│ │ ├── template
│ │ │ └── tips
│ │ │ ├── 404.html
│ │ │ ├── error.html
│ │ │ └── test.html
│ │ └── user
│ │ ├── login.html
│ │ ├── usergrade
│ │ │ ├── create.html
│ │ │ ├── details.html
│ │ │ ├── edit.html
│ │ │ └── index.html
│ │ ├── userInfo
│ │ │ ├── create.html
│ │ │ ├── detailsBalanceLog.html
│ │ │ ├── detailsPointLog.html
│ │ │ ├── editBalance.html
│ │ │ ├── edit.html
│ │ │ ├── editPoint.html
│ │ │ └── index.html
│ │ └── wechatuserinfo
│ │ ├── details.html
│ │ └── index.html
│ └── WxPayCert
│ └── 此处用于存放微信支付证书.txt
├── CoreCms.Net.Web.WebApi
│ ├── appsettings.Development.json
│ ├── appsettings.json
│ ├── Controllers
│ │ ├── AdvertController.cs
│ │ ├── AgentController.cs
│ │ ├── ArticleController.cs
│ │ ├── CartController.cs
│ │ ├── CommonController.cs
│ │ ├── CouponController.cs
│ │ ├── DemoController.cs
│ │ ├── DistributionController.cs
│ │ ├── FormController.cs
│ │ ├── GoodController.cs
│ │ ├── GroupController.cs
│ │ ├── NoticeController.cs
│ │ ├── OrderController.cs
│ │ ├── PageController.cs
│ │ ├── PaymentsController.cs
│ │ ├── PayNotify
│ │ │ ├── AliPayController.cs
│ │ │ └── WeChatPayController.cs
│ │ ├── PinTuanController.cs
│ │ ├── ServiceController.cs
│ │ ├── StoreController.cs
│ │ ├── UserController.cs
│ │ ├── WeChatAppletsMessageController.cs
│ │ └── WeChatOAuth
│ │ └── WxOpenController.cs
│ ├── CoreCms.Net.Web.WebApi.csproj
│ ├── Dockerfile
│ ├── Doc.xml
│ ├── illegalWord
│ │ ├── IllegalKeywords.txt
│ │ └── 说明.txt
│ ├── Infrastructure
│ │ ├── ApiExplorerIgnores.cs
│ │ ├── GlobalExceptionsFilterForClent.cs
│ │ └── RequiredErrorForClent.cs
│ ├── NLog.config
│ ├── Program.cs
│ ├── Properties
│ │ └── launchSettings.json
│ ├── wwwroot
│ │ ├── favicon.ico
│ │ ├── fonts
│ │ │ └── SourceHanSansK-Normal.ttf
│ │ ├── index.html
│ │ ├── robots.txt
│ │ └── static
│ │ ├── images
│ │ │ └── logo.png
│ │ ├── poster
│ │ │ └── 此处会存放临时带背景海报.txt
│ │ └── qrCode
│ │ └── 此处会存放用户唯一二维码用于生成带背景海报.txt
│ └── WxPayCert
│ └── 此处用于存放微信支付证书.txt
├── CoreCms.Net.WeChat.Service
│ ├── Configuration
│ │ ├── EventType.cs
│ │ └── RequestMsgType.cs
│ ├── CoreCms.Net.WeChat.Service.csproj
│ ├── Enums
│ │ └── ReturnCode.cs
│ ├── Mediator
│ │ ├── ImageMessageEventCommandHandler.cs
│ │ ├── TextMessageEventCommandHandler.cs
│ │ └── VoiceMessageEventCommandHandler.cs
│ ├── Models
│ │ ├── DecodedPhoneNumber.cs
│ │ ├── DecodedRunData.cs
│ │ ├── EncryptPostModel.cs
│ │ ├── IEncryptPostModel.cs
│ │ ├── PostModel.cs
│ │ ├── SendWxTemplateMessage.cs
│ │ ├── WaterMark.cs
│ │ ├── WeChatApiCallBack.cs
│ │ └── WeChatUserInfo.cs
│ ├── Options
│ │ └── WechatOptions.cs
│ ├── Services
│ │ └── HttpClients
│ │ ├── IWechatApiHttpClientFactory.cs
│ │ └── WechatApiHttpClientFactory.cs
│ └── Utilities
│ ├── CheckSignature.cs
│ ├── Cryptography.cs
│ ├── DateTimeHelper.cs
│ ├── DocumentExtensions.cs
│ ├── EncryptHelper.cs
│ ├── RequestUtility.cs
│ ├── WXBizMsgCrypt.cs
│ ├── WxOfficialHelper.cs
│ └── XmlUtility.cs
├── CoreShopCommunity.sln
├── docker-compose.yaml
├── LICENSE
├── README.md
└── 数据库
├── MySql
│ ├── 20211015
│ │ ├── coreshopmysql20211015带演示数据(Navicat导出).sql
│ │ ├── coreshopmysql20211015带演示数据(SQLyog导出).sql
│ │ └── coreshopmysql20211015带演示数据(阿里云dms导出).sql
│ ├── 20211025
│ │ ├── coreshopmysql20211025带演示数据(Navicat导出).sql
│ │ └── coreshopmysql20211025带演示数据(阿里云dms导出).sql
│ └── 数据库更新日志.txt
└── SqlServer
├── 20211025
│ └── CoreShop20211025带商品数据.bak
├── 20211119
│ └── 20211119带商品演示数据.bak
└── 数据库更新日志.txt
626 directories, 1959 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论