├── .DS_Store ├── .air.conf ├── .gitignore ├── LICENSE ├── README.md ├── SUMMARY.md ├── app ├── controllers │ ├── BaseController.go │ └── admin │ │ ├── LoginController.go │ │ ├── shop │ │ ├── CanvasController.go │ │ ├── ExpressController.go │ │ ├── OrderController.go │ │ ├── StoreCategoryController.go │ │ ├── StoreProductController.go │ │ └── StoreProductRuleController.go │ │ ├── system │ │ ├── DeptController.go │ │ ├── DictController.go │ │ ├── DictDetailController.go │ │ ├── JobController.go │ │ ├── LogController.go │ │ ├── MaterialController.go │ │ ├── MaterialGroupController.go │ │ ├── MenuController.go │ │ ├── RoleController.go │ │ └── UserController.go │ │ ├── tools │ │ ├── GenController.go │ │ ├── SysCronJobController.go │ │ └── ToolsController.go │ │ └── weixin │ │ ├── ArticleController.go │ │ ├── WechatMenuController.go │ │ └── WechatUserController.go ├── listen │ ├── RedisLIsten.go │ └── SetupListen.go ├── models │ ├── BaseModel.go │ ├── SysColumns.go │ ├── SysCronJob.go │ ├── SysDBColumns.go │ ├── SysDBTables.go │ ├── SysDept.go │ ├── SysDict.go │ ├── SysDictDetail.go │ ├── SysJob.go │ ├── SysLog.go │ ├── SysMaterial.go │ ├── SysMaterialGroup.go │ ├── SysMenu.go │ ├── SysPicture.go │ ├── SysRole.go │ ├── SysRoleDepts.go │ ├── SysRoleMenus.go │ ├── SysTables.go │ ├── SysUser.go │ ├── SysUsersRoles.go │ ├── YshopExpress.go │ ├── YshopShippingTemplates.go │ ├── YshopShippingTemplatesFree.go │ ├── YshopShippingTemplatesRegion.go │ ├── YshopStoreCanvas.go │ ├── YshopStoreCart.go │ ├── YshopStoreCategory.go │ ├── YshopStoreOrder.go │ ├── YshopStoreOrderCartInfo.go │ ├── YshopStoreOrderStatus.go │ ├── YshopStoreProduct.go │ ├── YshopStoreProductAttr.go │ ├── YshopStoreProductAttrResult.go │ ├── YshopStoreProductAttrValue.go │ ├── YshopStoreProductRelation.go │ ├── YshopStoreProductReply.go │ ├── YshopStoreProductRule.go │ ├── YshopSystemCity.go │ ├── YshopUser.go │ ├── YshopUserAddress.go │ ├── YshopUserBill.go │ ├── YshopUserExtract.go │ ├── YshopWechatArticle.go │ ├── YshopWechatMenu.go │ ├── dto │ │ ├── AuthUser.go │ │ └── BasePage.go │ └── vo │ │ ├── JwtUser.go │ │ ├── LoginVo.go │ │ └── ResultList.go ├── params │ ├── AddressDetailParam.go │ ├── AddressParam.go │ ├── AfterSalesParam.go │ ├── CartIdsParam.go │ ├── CartNumParam.go │ ├── CartParam.go │ ├── ComputeOrderParam.go │ ├── ConfirmOrderParam.go │ ├── DoOrderParam.go │ ├── HLoginParam.go │ ├── HandleOrderParam.go │ ├── IdParam.go │ ├── OrderParam.go │ ├── PayParam.go │ ├── ProductReplyParam.go │ ├── RegParam.go │ ├── RelationParam.go │ ├── ReplyParam.go │ ├── VerityParam.go │ └── admin │ │ └── GenTableParam.go └── service │ ├── address_service │ └── Address.go │ ├── article_service │ └── Article.go │ ├── canvas_service │ └── Canvas.go │ ├── cart_service │ ├── Cart.go │ └── vo │ │ └── Cart.go │ ├── cate_service │ └── Cate.go │ ├── cron_job_service │ ├── SysCronJob.go │ └── task │ │ ├── config.go │ │ └── fun.go │ ├── dept_service │ └── Dept.go │ ├── dict_detail_service │ └── DictDetail.go │ ├── dict_service │ ├── Dict.go │ └── dto │ │ ├── DictPost.go │ │ └── DictQuery.go │ ├── express_service │ └── Address.go │ ├── gen_service │ └── Gen.go │ ├── job_service │ └── Job.go │ ├── log_service │ └── Log.go │ ├── material_group_service │ └── MaterialGroup.go │ ├── material_service │ └── Material.go │ ├── menu_service │ ├── Menu.go │ ├── dto │ │ └── RoleMenu.go │ └── vo │ │ └── MenuVo.go │ ├── order_service │ ├── Order.go │ ├── dto │ │ ├── Cache.go │ │ ├── Express.go │ │ ├── OrderExtend.go │ │ ├── Other.go │ │ ├── PriceGroup.go │ │ └── Status.go │ └── vo │ │ ├── Compute.go │ │ ├── ConfirmOrder.go │ │ └── StoreOrder.go │ ├── pay_service │ └── Pay.go │ ├── product_relation_service │ └── Relation.go │ ├── product_reply_service │ └── Reply.go │ ├── product_rule_service │ └── Rule.go │ ├── product_service │ ├── Product.go │ ├── dto │ │ ├── AttrValue.go │ │ ├── Detail.go │ │ ├── FormatDetail.go │ │ ├── OnSale.go │ │ ├── ProductFormat.go │ │ ├── ProductRule.go │ │ ├── StoreProduct.go │ │ └── StoreProductInfo.go │ └── vo │ │ ├── Product.go │ │ ├── ProductAttr.go │ │ ├── ProductAttrResult.go │ │ ├── ProductDetail.go │ │ └── ProductReply.go │ ├── role_service │ └── Role.go │ ├── user_service │ ├── User.go │ └── dto │ │ ├── UserMoney.go │ │ ├── UserPass.go │ │ ├── UserPost.go │ │ └── UserQuery.go │ ├── wechat_menu_service │ ├── Menu.go │ └── dto │ │ └── WechatMenu.go │ └── wechat_user_service │ ├── User.go │ ├── dto │ └── YshopUser.go │ └── vo │ ├── JwtUser.go │ └── User.go ├── book.json ├── cmd ├── cmd.go └── serve.go ├── conf ├── app.go ├── config.go ├── database.go ├── express.go ├── rbac_model.conf ├── redis.go ├── server.go ├── wechat.go └── zap.go ├── config.yaml ├── cron.png ├── docs ├── docs.go ├── swagger.json └── swagger.yaml ├── gen.png ├── go.mod ├── go.sum ├── main.go ├── middleware ├── AuthCheck.go ├── cors.go ├── limit.go └── log.go ├── pkg ├── app │ ├── Params.go │ ├── form.go │ ├── request.go │ └── response.go ├── casbin │ └── casbin.go ├── config │ └── viper.go ├── console │ └── console.go ├── constant │ ├── code.go │ ├── constant.go │ └── msg.go ├── enums │ ├── article │ │ └── type.go │ ├── cart │ │ └── type.go │ ├── order │ │ ├── pay.go │ │ └── shipping.go │ ├── product │ │ ├── order.go │ │ ├── status.go │ │ └── type.go │ ├── relation │ │ └── type.go │ └── user │ │ └── type.go ├── file │ └── file.go ├── global │ └── global.go ├── jwt │ └── jwt.go ├── limiter │ └── limiter.go ├── logging │ ├── file.go │ ├── log.go │ └── zap.go ├── qrcode │ └── qrcode.go ├── redis │ ├── redis.go │ └── v9 │ │ └── redis.go ├── runtime │ ├── Application.go │ └── Invok.go ├── setting │ └── setting.go ├── upload │ └── upload.go ├── util │ ├── cron │ │ └── cron.go │ ├── md5.go │ ├── pagination.go │ ├── snow_flake.go │ ├── tools.go │ └── util.go └── wechat │ └── wechat.go ├── routers ├── admin │ ├── shop.go │ ├── system.go │ ├── tools.go │ └── weixin.go └── router.go ├── runtime └── upload │ └── images │ ├── 12d0a78a77f5123fc2be494e9f739550.jpeg │ ├── 32006d252bdccd5a6f07e3b975d3902f.jpeg │ ├── 43f704702c744e120319a9ef92f567d7.jpeg │ ├── 4f4adcbf8c6f66dcfc8a3282ac2bf10a.png │ ├── 579a60c2c5753246453168a3c6fcac0f.jpeg │ ├── 6f115405bea0488ee9ba65ffd4e46270.jpeg │ ├── 884d9804999fc47a3c2694e49ad2536a.png │ ├── 899186f7879ef9f1cf011b415f548c03.png │ ├── 9440c22c304ed799c7006b2b89dd39f3.jpeg │ ├── d6db477051465f9ae7dd73337296bf31.jpeg │ ├── d8628370a31d2a4f6ceec81a9507ef26.jpeg │ ├── ddd7a643936ff4e0d049d894d129070e.jpg │ ├── f54f5486332d9389dd21677f9a220ef5.jpeg │ └── fbf0d2d096d902503827e73607a9441a.jpeg ├── sql ├── yshop_go-v1.2.sql └── yshop_go.sql ├── template ├── controller.go.template ├── js.go.template ├── model.go.template ├── service.go.template └── vue.go.template ├── weixin00.png ├── 介绍.md ├── 微信图片_20220507164605.jpg ├── 微信图片_202205071646051.jpg ├── 微信图片_202205071646052.jpg ├── 微信图片_202205071646053.jpg ├── 微信图片_202205071646054.jpg ├── 微信图片_202205071646055.jpg ├── 微信图片_202205071646056.jpg └── 环境部署.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/.DS_Store -------------------------------------------------------------------------------- /.air.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/.air.conf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /app/controllers/BaseController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/BaseController.go -------------------------------------------------------------------------------- /app/controllers/admin/LoginController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/LoginController.go -------------------------------------------------------------------------------- /app/controllers/admin/shop/CanvasController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/shop/CanvasController.go -------------------------------------------------------------------------------- /app/controllers/admin/shop/ExpressController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/shop/ExpressController.go -------------------------------------------------------------------------------- /app/controllers/admin/shop/OrderController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/shop/OrderController.go -------------------------------------------------------------------------------- /app/controllers/admin/shop/StoreCategoryController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/shop/StoreCategoryController.go -------------------------------------------------------------------------------- /app/controllers/admin/shop/StoreProductController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/shop/StoreProductController.go -------------------------------------------------------------------------------- /app/controllers/admin/shop/StoreProductRuleController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/shop/StoreProductRuleController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/DeptController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/DeptController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/DictController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/DictController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/DictDetailController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/DictDetailController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/JobController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/JobController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/LogController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/LogController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/MaterialController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/MaterialController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/MaterialGroupController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/MaterialGroupController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/MenuController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/MenuController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/RoleController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/RoleController.go -------------------------------------------------------------------------------- /app/controllers/admin/system/UserController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/system/UserController.go -------------------------------------------------------------------------------- /app/controllers/admin/tools/GenController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/tools/GenController.go -------------------------------------------------------------------------------- /app/controllers/admin/tools/SysCronJobController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/tools/SysCronJobController.go -------------------------------------------------------------------------------- /app/controllers/admin/tools/ToolsController.go: -------------------------------------------------------------------------------- 1 | package tools 2 | -------------------------------------------------------------------------------- /app/controllers/admin/weixin/ArticleController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/weixin/ArticleController.go -------------------------------------------------------------------------------- /app/controllers/admin/weixin/WechatMenuController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/weixin/WechatMenuController.go -------------------------------------------------------------------------------- /app/controllers/admin/weixin/WechatUserController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/controllers/admin/weixin/WechatUserController.go -------------------------------------------------------------------------------- /app/listen/RedisLIsten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/listen/RedisLIsten.go -------------------------------------------------------------------------------- /app/listen/SetupListen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/listen/SetupListen.go -------------------------------------------------------------------------------- /app/models/BaseModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/BaseModel.go -------------------------------------------------------------------------------- /app/models/SysColumns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysColumns.go -------------------------------------------------------------------------------- /app/models/SysCronJob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysCronJob.go -------------------------------------------------------------------------------- /app/models/SysDBColumns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysDBColumns.go -------------------------------------------------------------------------------- /app/models/SysDBTables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysDBTables.go -------------------------------------------------------------------------------- /app/models/SysDept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysDept.go -------------------------------------------------------------------------------- /app/models/SysDict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysDict.go -------------------------------------------------------------------------------- /app/models/SysDictDetail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysDictDetail.go -------------------------------------------------------------------------------- /app/models/SysJob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysJob.go -------------------------------------------------------------------------------- /app/models/SysLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysLog.go -------------------------------------------------------------------------------- /app/models/SysMaterial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysMaterial.go -------------------------------------------------------------------------------- /app/models/SysMaterialGroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysMaterialGroup.go -------------------------------------------------------------------------------- /app/models/SysMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysMenu.go -------------------------------------------------------------------------------- /app/models/SysPicture.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | -------------------------------------------------------------------------------- /app/models/SysRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysRole.go -------------------------------------------------------------------------------- /app/models/SysRoleDepts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysRoleDepts.go -------------------------------------------------------------------------------- /app/models/SysRoleMenus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysRoleMenus.go -------------------------------------------------------------------------------- /app/models/SysTables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysTables.go -------------------------------------------------------------------------------- /app/models/SysUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysUser.go -------------------------------------------------------------------------------- /app/models/SysUsersRoles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/SysUsersRoles.go -------------------------------------------------------------------------------- /app/models/YshopExpress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopExpress.go -------------------------------------------------------------------------------- /app/models/YshopShippingTemplates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopShippingTemplates.go -------------------------------------------------------------------------------- /app/models/YshopShippingTemplatesFree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopShippingTemplatesFree.go -------------------------------------------------------------------------------- /app/models/YshopShippingTemplatesRegion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopShippingTemplatesRegion.go -------------------------------------------------------------------------------- /app/models/YshopStoreCanvas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreCanvas.go -------------------------------------------------------------------------------- /app/models/YshopStoreCart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreCart.go -------------------------------------------------------------------------------- /app/models/YshopStoreCategory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreCategory.go -------------------------------------------------------------------------------- /app/models/YshopStoreOrder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreOrder.go -------------------------------------------------------------------------------- /app/models/YshopStoreOrderCartInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreOrderCartInfo.go -------------------------------------------------------------------------------- /app/models/YshopStoreOrderStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreOrderStatus.go -------------------------------------------------------------------------------- /app/models/YshopStoreProduct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreProduct.go -------------------------------------------------------------------------------- /app/models/YshopStoreProductAttr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreProductAttr.go -------------------------------------------------------------------------------- /app/models/YshopStoreProductAttrResult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreProductAttrResult.go -------------------------------------------------------------------------------- /app/models/YshopStoreProductAttrValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreProductAttrValue.go -------------------------------------------------------------------------------- /app/models/YshopStoreProductRelation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreProductRelation.go -------------------------------------------------------------------------------- /app/models/YshopStoreProductReply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreProductReply.go -------------------------------------------------------------------------------- /app/models/YshopStoreProductRule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopStoreProductRule.go -------------------------------------------------------------------------------- /app/models/YshopSystemCity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopSystemCity.go -------------------------------------------------------------------------------- /app/models/YshopUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopUser.go -------------------------------------------------------------------------------- /app/models/YshopUserAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopUserAddress.go -------------------------------------------------------------------------------- /app/models/YshopUserBill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopUserBill.go -------------------------------------------------------------------------------- /app/models/YshopUserExtract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopUserExtract.go -------------------------------------------------------------------------------- /app/models/YshopWechatArticle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopWechatArticle.go -------------------------------------------------------------------------------- /app/models/YshopWechatMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/YshopWechatMenu.go -------------------------------------------------------------------------------- /app/models/dto/AuthUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/dto/AuthUser.go -------------------------------------------------------------------------------- /app/models/dto/BasePage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/dto/BasePage.go -------------------------------------------------------------------------------- /app/models/vo/JwtUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/vo/JwtUser.go -------------------------------------------------------------------------------- /app/models/vo/LoginVo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/vo/LoginVo.go -------------------------------------------------------------------------------- /app/models/vo/ResultList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/models/vo/ResultList.go -------------------------------------------------------------------------------- /app/params/AddressDetailParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/AddressDetailParam.go -------------------------------------------------------------------------------- /app/params/AddressParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/AddressParam.go -------------------------------------------------------------------------------- /app/params/AfterSalesParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/AfterSalesParam.go -------------------------------------------------------------------------------- /app/params/CartIdsParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/CartIdsParam.go -------------------------------------------------------------------------------- /app/params/CartNumParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/CartNumParam.go -------------------------------------------------------------------------------- /app/params/CartParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/CartParam.go -------------------------------------------------------------------------------- /app/params/ComputeOrderParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/ComputeOrderParam.go -------------------------------------------------------------------------------- /app/params/ConfirmOrderParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/ConfirmOrderParam.go -------------------------------------------------------------------------------- /app/params/DoOrderParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/DoOrderParam.go -------------------------------------------------------------------------------- /app/params/HLoginParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/HLoginParam.go -------------------------------------------------------------------------------- /app/params/HandleOrderParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/HandleOrderParam.go -------------------------------------------------------------------------------- /app/params/IdParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/IdParam.go -------------------------------------------------------------------------------- /app/params/OrderParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/OrderParam.go -------------------------------------------------------------------------------- /app/params/PayParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/PayParam.go -------------------------------------------------------------------------------- /app/params/ProductReplyParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/ProductReplyParam.go -------------------------------------------------------------------------------- /app/params/RegParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/RegParam.go -------------------------------------------------------------------------------- /app/params/RelationParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/RelationParam.go -------------------------------------------------------------------------------- /app/params/ReplyParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/ReplyParam.go -------------------------------------------------------------------------------- /app/params/VerityParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/VerityParam.go -------------------------------------------------------------------------------- /app/params/admin/GenTableParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/params/admin/GenTableParam.go -------------------------------------------------------------------------------- /app/service/address_service/Address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/address_service/Address.go -------------------------------------------------------------------------------- /app/service/article_service/Article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/article_service/Article.go -------------------------------------------------------------------------------- /app/service/canvas_service/Canvas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/canvas_service/Canvas.go -------------------------------------------------------------------------------- /app/service/cart_service/Cart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/cart_service/Cart.go -------------------------------------------------------------------------------- /app/service/cart_service/vo/Cart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/cart_service/vo/Cart.go -------------------------------------------------------------------------------- /app/service/cate_service/Cate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/cate_service/Cate.go -------------------------------------------------------------------------------- /app/service/cron_job_service/SysCronJob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/cron_job_service/SysCronJob.go -------------------------------------------------------------------------------- /app/service/cron_job_service/task/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/cron_job_service/task/config.go -------------------------------------------------------------------------------- /app/service/cron_job_service/task/fun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/cron_job_service/task/fun.go -------------------------------------------------------------------------------- /app/service/dept_service/Dept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/dept_service/Dept.go -------------------------------------------------------------------------------- /app/service/dict_detail_service/DictDetail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/dict_detail_service/DictDetail.go -------------------------------------------------------------------------------- /app/service/dict_service/Dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/dict_service/Dict.go -------------------------------------------------------------------------------- /app/service/dict_service/dto/DictPost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/dict_service/dto/DictPost.go -------------------------------------------------------------------------------- /app/service/dict_service/dto/DictQuery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/dict_service/dto/DictQuery.go -------------------------------------------------------------------------------- /app/service/express_service/Address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/express_service/Address.go -------------------------------------------------------------------------------- /app/service/gen_service/Gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/gen_service/Gen.go -------------------------------------------------------------------------------- /app/service/job_service/Job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/job_service/Job.go -------------------------------------------------------------------------------- /app/service/log_service/Log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/log_service/Log.go -------------------------------------------------------------------------------- /app/service/material_group_service/MaterialGroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/material_group_service/MaterialGroup.go -------------------------------------------------------------------------------- /app/service/material_service/Material.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/material_service/Material.go -------------------------------------------------------------------------------- /app/service/menu_service/Menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/menu_service/Menu.go -------------------------------------------------------------------------------- /app/service/menu_service/dto/RoleMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/menu_service/dto/RoleMenu.go -------------------------------------------------------------------------------- /app/service/menu_service/vo/MenuVo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/menu_service/vo/MenuVo.go -------------------------------------------------------------------------------- /app/service/order_service/Order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/Order.go -------------------------------------------------------------------------------- /app/service/order_service/dto/Cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/dto/Cache.go -------------------------------------------------------------------------------- /app/service/order_service/dto/Express.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/dto/Express.go -------------------------------------------------------------------------------- /app/service/order_service/dto/OrderExtend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/dto/OrderExtend.go -------------------------------------------------------------------------------- /app/service/order_service/dto/Other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/dto/Other.go -------------------------------------------------------------------------------- /app/service/order_service/dto/PriceGroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/dto/PriceGroup.go -------------------------------------------------------------------------------- /app/service/order_service/dto/Status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/dto/Status.go -------------------------------------------------------------------------------- /app/service/order_service/vo/Compute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/vo/Compute.go -------------------------------------------------------------------------------- /app/service/order_service/vo/ConfirmOrder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/vo/ConfirmOrder.go -------------------------------------------------------------------------------- /app/service/order_service/vo/StoreOrder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/order_service/vo/StoreOrder.go -------------------------------------------------------------------------------- /app/service/pay_service/Pay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/pay_service/Pay.go -------------------------------------------------------------------------------- /app/service/product_relation_service/Relation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_relation_service/Relation.go -------------------------------------------------------------------------------- /app/service/product_reply_service/Reply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_reply_service/Reply.go -------------------------------------------------------------------------------- /app/service/product_rule_service/Rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_rule_service/Rule.go -------------------------------------------------------------------------------- /app/service/product_service/Product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/Product.go -------------------------------------------------------------------------------- /app/service/product_service/dto/AttrValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/AttrValue.go -------------------------------------------------------------------------------- /app/service/product_service/dto/Detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/Detail.go -------------------------------------------------------------------------------- /app/service/product_service/dto/FormatDetail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/FormatDetail.go -------------------------------------------------------------------------------- /app/service/product_service/dto/OnSale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/OnSale.go -------------------------------------------------------------------------------- /app/service/product_service/dto/ProductFormat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/ProductFormat.go -------------------------------------------------------------------------------- /app/service/product_service/dto/ProductRule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/ProductRule.go -------------------------------------------------------------------------------- /app/service/product_service/dto/StoreProduct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/StoreProduct.go -------------------------------------------------------------------------------- /app/service/product_service/dto/StoreProductInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/dto/StoreProductInfo.go -------------------------------------------------------------------------------- /app/service/product_service/vo/Product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/vo/Product.go -------------------------------------------------------------------------------- /app/service/product_service/vo/ProductAttr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/vo/ProductAttr.go -------------------------------------------------------------------------------- /app/service/product_service/vo/ProductAttrResult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/vo/ProductAttrResult.go -------------------------------------------------------------------------------- /app/service/product_service/vo/ProductDetail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/vo/ProductDetail.go -------------------------------------------------------------------------------- /app/service/product_service/vo/ProductReply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/product_service/vo/ProductReply.go -------------------------------------------------------------------------------- /app/service/role_service/Role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/role_service/Role.go -------------------------------------------------------------------------------- /app/service/user_service/User.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/user_service/User.go -------------------------------------------------------------------------------- /app/service/user_service/dto/UserMoney.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/user_service/dto/UserMoney.go -------------------------------------------------------------------------------- /app/service/user_service/dto/UserPass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/user_service/dto/UserPass.go -------------------------------------------------------------------------------- /app/service/user_service/dto/UserPost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/user_service/dto/UserPost.go -------------------------------------------------------------------------------- /app/service/user_service/dto/UserQuery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/user_service/dto/UserQuery.go -------------------------------------------------------------------------------- /app/service/wechat_menu_service/Menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/wechat_menu_service/Menu.go -------------------------------------------------------------------------------- /app/service/wechat_menu_service/dto/WechatMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/wechat_menu_service/dto/WechatMenu.go -------------------------------------------------------------------------------- /app/service/wechat_user_service/User.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/wechat_user_service/User.go -------------------------------------------------------------------------------- /app/service/wechat_user_service/dto/YshopUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/wechat_user_service/dto/YshopUser.go -------------------------------------------------------------------------------- /app/service/wechat_user_service/vo/JwtUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/wechat_user_service/vo/JwtUser.go -------------------------------------------------------------------------------- /app/service/wechat_user_service/vo/User.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/app/service/wechat_user_service/vo/User.go -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "yshop-gin文档" 3 | } -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /cmd/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/cmd/serve.go -------------------------------------------------------------------------------- /conf/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/app.go -------------------------------------------------------------------------------- /conf/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/config.go -------------------------------------------------------------------------------- /conf/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/database.go -------------------------------------------------------------------------------- /conf/express.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/express.go -------------------------------------------------------------------------------- /conf/rbac_model.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/rbac_model.conf -------------------------------------------------------------------------------- /conf/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/redis.go -------------------------------------------------------------------------------- /conf/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/server.go -------------------------------------------------------------------------------- /conf/wechat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/wechat.go -------------------------------------------------------------------------------- /conf/zap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/conf/zap.go -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/config.yaml -------------------------------------------------------------------------------- /cron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/cron.png -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/docs/swagger.json -------------------------------------------------------------------------------- /docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/docs/swagger.yaml -------------------------------------------------------------------------------- /gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/gen.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/main.go -------------------------------------------------------------------------------- /middleware/AuthCheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/middleware/AuthCheck.go -------------------------------------------------------------------------------- /middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/middleware/cors.go -------------------------------------------------------------------------------- /middleware/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/middleware/limit.go -------------------------------------------------------------------------------- /middleware/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/middleware/log.go -------------------------------------------------------------------------------- /pkg/app/Params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/app/Params.go -------------------------------------------------------------------------------- /pkg/app/form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/app/form.go -------------------------------------------------------------------------------- /pkg/app/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/app/request.go -------------------------------------------------------------------------------- /pkg/app/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/app/response.go -------------------------------------------------------------------------------- /pkg/casbin/casbin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/casbin/casbin.go -------------------------------------------------------------------------------- /pkg/config/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/config/viper.go -------------------------------------------------------------------------------- /pkg/console/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/console/console.go -------------------------------------------------------------------------------- /pkg/constant/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/constant/code.go -------------------------------------------------------------------------------- /pkg/constant/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/constant/constant.go -------------------------------------------------------------------------------- /pkg/constant/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/constant/msg.go -------------------------------------------------------------------------------- /pkg/enums/article/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/article/type.go -------------------------------------------------------------------------------- /pkg/enums/cart/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/cart/type.go -------------------------------------------------------------------------------- /pkg/enums/order/pay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/order/pay.go -------------------------------------------------------------------------------- /pkg/enums/order/shipping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/order/shipping.go -------------------------------------------------------------------------------- /pkg/enums/product/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/product/order.go -------------------------------------------------------------------------------- /pkg/enums/product/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/product/status.go -------------------------------------------------------------------------------- /pkg/enums/product/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/product/type.go -------------------------------------------------------------------------------- /pkg/enums/relation/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/relation/type.go -------------------------------------------------------------------------------- /pkg/enums/user/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/enums/user/type.go -------------------------------------------------------------------------------- /pkg/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/file/file.go -------------------------------------------------------------------------------- /pkg/global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/global/global.go -------------------------------------------------------------------------------- /pkg/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/jwt/jwt.go -------------------------------------------------------------------------------- /pkg/limiter/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/limiter/limiter.go -------------------------------------------------------------------------------- /pkg/logging/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/logging/file.go -------------------------------------------------------------------------------- /pkg/logging/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/logging/log.go -------------------------------------------------------------------------------- /pkg/logging/zap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/logging/zap.go -------------------------------------------------------------------------------- /pkg/qrcode/qrcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/qrcode/qrcode.go -------------------------------------------------------------------------------- /pkg/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/redis/redis.go -------------------------------------------------------------------------------- /pkg/redis/v9/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/redis/v9/redis.go -------------------------------------------------------------------------------- /pkg/runtime/Application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/runtime/Application.go -------------------------------------------------------------------------------- /pkg/runtime/Invok.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/runtime/Invok.go -------------------------------------------------------------------------------- /pkg/setting/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/setting/setting.go -------------------------------------------------------------------------------- /pkg/upload/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/upload/upload.go -------------------------------------------------------------------------------- /pkg/util/cron/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/util/cron/cron.go -------------------------------------------------------------------------------- /pkg/util/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/util/md5.go -------------------------------------------------------------------------------- /pkg/util/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/util/pagination.go -------------------------------------------------------------------------------- /pkg/util/snow_flake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/util/snow_flake.go -------------------------------------------------------------------------------- /pkg/util/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/util/tools.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /pkg/wechat/wechat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/pkg/wechat/wechat.go -------------------------------------------------------------------------------- /routers/admin/shop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/routers/admin/shop.go -------------------------------------------------------------------------------- /routers/admin/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/routers/admin/system.go -------------------------------------------------------------------------------- /routers/admin/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/routers/admin/tools.go -------------------------------------------------------------------------------- /routers/admin/weixin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/routers/admin/weixin.go -------------------------------------------------------------------------------- /routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/routers/router.go -------------------------------------------------------------------------------- /runtime/upload/images/12d0a78a77f5123fc2be494e9f739550.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/12d0a78a77f5123fc2be494e9f739550.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/32006d252bdccd5a6f07e3b975d3902f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/32006d252bdccd5a6f07e3b975d3902f.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/43f704702c744e120319a9ef92f567d7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/43f704702c744e120319a9ef92f567d7.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/4f4adcbf8c6f66dcfc8a3282ac2bf10a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/4f4adcbf8c6f66dcfc8a3282ac2bf10a.png -------------------------------------------------------------------------------- /runtime/upload/images/579a60c2c5753246453168a3c6fcac0f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/579a60c2c5753246453168a3c6fcac0f.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/6f115405bea0488ee9ba65ffd4e46270.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/6f115405bea0488ee9ba65ffd4e46270.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/884d9804999fc47a3c2694e49ad2536a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/884d9804999fc47a3c2694e49ad2536a.png -------------------------------------------------------------------------------- /runtime/upload/images/899186f7879ef9f1cf011b415f548c03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/899186f7879ef9f1cf011b415f548c03.png -------------------------------------------------------------------------------- /runtime/upload/images/9440c22c304ed799c7006b2b89dd39f3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/9440c22c304ed799c7006b2b89dd39f3.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/d6db477051465f9ae7dd73337296bf31.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/d6db477051465f9ae7dd73337296bf31.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/d8628370a31d2a4f6ceec81a9507ef26.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/d8628370a31d2a4f6ceec81a9507ef26.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/ddd7a643936ff4e0d049d894d129070e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/ddd7a643936ff4e0d049d894d129070e.jpg -------------------------------------------------------------------------------- /runtime/upload/images/f54f5486332d9389dd21677f9a220ef5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/f54f5486332d9389dd21677f9a220ef5.jpeg -------------------------------------------------------------------------------- /runtime/upload/images/fbf0d2d096d902503827e73607a9441a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/runtime/upload/images/fbf0d2d096d902503827e73607a9441a.jpeg -------------------------------------------------------------------------------- /sql/yshop_go-v1.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/sql/yshop_go-v1.2.sql -------------------------------------------------------------------------------- /sql/yshop_go.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/sql/yshop_go.sql -------------------------------------------------------------------------------- /template/controller.go.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/template/controller.go.template -------------------------------------------------------------------------------- /template/js.go.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/template/js.go.template -------------------------------------------------------------------------------- /template/model.go.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/template/model.go.template -------------------------------------------------------------------------------- /template/service.go.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/template/service.go.template -------------------------------------------------------------------------------- /template/vue.go.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/template/vue.go.template -------------------------------------------------------------------------------- /weixin00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/weixin00.png -------------------------------------------------------------------------------- /介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/介绍.md -------------------------------------------------------------------------------- /微信图片_20220507164605.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/微信图片_20220507164605.jpg -------------------------------------------------------------------------------- /微信图片_202205071646051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/微信图片_202205071646051.jpg -------------------------------------------------------------------------------- /微信图片_202205071646052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/微信图片_202205071646052.jpg -------------------------------------------------------------------------------- /微信图片_202205071646053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/微信图片_202205071646053.jpg -------------------------------------------------------------------------------- /微信图片_202205071646054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/微信图片_202205071646054.jpg -------------------------------------------------------------------------------- /微信图片_202205071646055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/微信图片_202205071646055.jpg -------------------------------------------------------------------------------- /微信图片_202205071646056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/微信图片_202205071646056.jpg -------------------------------------------------------------------------------- /环境部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guchengwuyue/yshop-gin/HEAD/环境部署.md --------------------------------------------------------------------------------