yshop-gin(v1.3) Gin+Gorm+Casbin+Jwt+Redis+Mysql8+Vue RBAC
目录结构
├── .DS_Store
├── .air.conf
├── .gitignore
├── LICENSE
├── 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
├── readme.txt
├── 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