├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.MD ├── app ├── controller │ ├── Admin │ │ ├── AppGoodsInfo.go │ │ ├── BaseAppSpaceInfo.go │ │ ├── BaseAppSpaceType.go │ │ ├── BaseComm.go │ │ ├── BaseOpen.go │ │ ├── BaseSysConf.go │ │ ├── BaseSysDepartment.go │ │ ├── BaseSysLog.go │ │ ├── BaseSysMenu.go │ │ ├── BaseSysParam.go │ │ ├── BaseSysRole.go │ │ ├── BaseSysRoleDepartment.go │ │ ├── BaseSysRoleMenu.go │ │ ├── BaseSysUser.go │ │ ├── BaseSysUserRole.go │ │ ├── DemoGo.go │ │ ├── GenCodeConfig.go │ │ ├── GenCodeLog.go │ │ ├── TaskInfo.go │ │ └── TaskLog.go │ ├── Api │ │ ├── AppGoodsInfo.go │ │ ├── BaseAppSpaceInfo.go │ │ ├── BaseAppSpaceType.go │ │ ├── BaseComm.go │ │ ├── BaseOpen.go │ │ ├── BaseSysConf.go │ │ ├── BaseSysDepartment.go │ │ ├── BaseSysLog.go │ │ ├── BaseSysMenu.go │ │ ├── BaseSysParam.go │ │ ├── BaseSysRole.go │ │ ├── BaseSysRoleDepartment.go │ │ ├── BaseSysRoleMenu.go │ │ ├── BaseSysUser.go │ │ ├── BaseSysUserRole.go │ │ ├── DemoGo.go │ │ ├── GenCodeConfig.go │ │ ├── GenCodeLog.go │ │ ├── TaskInfo.go │ │ └── TaskLog.go │ ├── Test │ │ ├── Test.go │ │ └── TestCaml.go │ └── Ws │ │ └── websocket.go ├── model │ ├── AppGoodsInfoModel │ │ └── AppGoodsInfo.go │ ├── BaseAppSpaceInfoModel │ │ └── BaseAppSpaceInfo.go │ ├── BaseAppSpaceTypeModel │ │ └── BaseAppSpaceType.go │ ├── BaseCommModel │ │ └── BaseComm.go │ ├── BaseOpenModel │ │ └── BaseOpen.go │ ├── BaseSysConfModel │ │ └── BaseSysConf.go │ ├── BaseSysDepartmentModel │ │ └── BaseSysDepartment.go │ ├── BaseSysLogModel │ │ └── BaseSysLog.go │ ├── BaseSysMenuModel │ │ └── BaseSysMenu.go │ ├── BaseSysParamModel │ │ └── BaseSysParam.go │ ├── BaseSysRoleDepartmentModel │ │ └── BaseSysRoleDepartment.go │ ├── BaseSysRoleMenuModel │ │ └── BaseSysRoleMenu.go │ ├── BaseSysRoleModel │ │ └── BaseSysRole.go │ ├── BaseSysUserModel │ │ └── BaseSysUser.go │ ├── BaseSysUserRoleModel │ │ └── BaseSysUserRole.go │ ├── ContextModel │ │ └── Context.go │ ├── DemoGoModel │ │ └── DemoGo.go │ ├── GenCodeConfigModel │ │ └── GenCodeConfig.go │ ├── GenCodeLogModel │ │ └── GenCodeLog.go │ ├── GenTableColumnModel │ │ └── GenTableColumn.go │ ├── GenTableModel │ │ └── GenTable.go │ ├── GoodsModel │ │ └── goods.go │ ├── TaskInfoModel │ │ └── TaskInfo.go │ ├── TaskLogModel │ │ └── TaskLog.go │ └── UserModel │ │ └── User.go ├── service │ ├── .gitkeep │ ├── AppGoodsInfoService │ │ └── AppGoodsInfo.go │ ├── BaseAppSpaceInfoService │ │ └── BaseAppSpaceInfo.go │ ├── BaseAppSpaceTypeService │ │ └── BaseAppSpaceType.go │ ├── BaseCommService │ │ └── BaseComm.go │ ├── BaseOpenService │ │ └── BaseOpen.go │ ├── BaseSysConfService │ │ └── BaseSysConf.go │ ├── BaseSysDepartmentService │ │ └── BaseSysDepartment.go │ ├── BaseSysLogService │ │ └── BaseSysLog.go │ ├── BaseSysMenuService │ │ └── BaseSysMenu.go │ ├── BaseSysParamService │ │ └── BaseSysParam.go │ ├── BaseSysRoleDepartmentService │ │ └── BaseSysRoleDepartment.go │ ├── BaseSysRoleMenuService │ │ └── BaseSysRoleMenu.go │ ├── BaseSysRoleService │ │ └── BaseSysRole.go │ ├── BaseSysUserRoleService │ │ └── BaseSysUserRole.go │ ├── BaseSysUserService │ │ └── BaseSysUser.go │ ├── ContextService │ │ └── ContextService.go │ ├── DemoGoService │ │ └── DemoGo.go │ ├── GenCodeConfigService │ │ └── GenCodeConfig.go │ ├── GenCodeLogService │ │ └── GenCodeLog.go │ ├── TaskInfoService │ │ └── TaskInfo.go │ └── TaskLogService │ │ └── TaskLog.go └── task │ ├── AppGoodsInoTask.go │ └── Main.go ├── boot ├── .gitkeep └── boot.go ├── config ├── .gitkeep ├── config.example.toml └── config.toml ├── db └── gf-easy.sql ├── document ├── .gitkeep ├── postman │ └── localhost.postman_collection.json └── sql │ └── create.sql ├── go.mod ├── library ├── response │ └── response.go └── utils │ ├── cache │ └── main.go │ ├── captcha │ ├── captcha.go │ └── redisStore.go │ ├── jwt │ └── main.go │ ├── packObj │ └── main.go │ ├── slice_tree.go │ └── tools.go ├── main.go ├── middleWare └── middleware.go ├── packed ├── packed.go └── swagger.go ├── public ├── html │ ├── .gitkeep │ └── chat.html ├── plugin │ ├── .gitkeep │ └── layer-3.1.1 │ │ ├── layer.js │ │ ├── mobile │ │ ├── layer.js │ │ └── need │ │ │ └── layer.css │ │ └── theme │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif └── resource │ ├── css │ └── .gitkeep │ ├── image │ ├── .gitkeep │ ├── ce2hday4j3js9qnemk.png │ ├── ce7ls8387c6ohcrmdk.png │ ├── cedwpfw644vcajaux1.png │ ├── cover.png │ ├── favicon.ico │ └── gf.ico │ └── js │ └── .gitkeep ├── router ├── .gitkeep ├── adminRouter.go ├── apiRouter.go ├── openRouter.go ├── router.go └── wsRouter.go ├── screenshot ├── 3d-GfEasy1.png ├── GfEasy-移动.png ├── genCodeLog.png ├── img1.png ├── img100.png ├── img_1.png ├── img_16.png ├── img_17.png ├── img_2.png ├── img_22.png ├── img_3.png ├── img_4.png ├── img_5.png ├── img_6.png ├── img_7.png ├── img_8.png └── screenshot2 │ ├── img.png │ ├── img121.png │ ├── img_1.png │ ├── img_10.png │ ├── img_11.png │ ├── img_2.png │ ├── img_3.png │ ├── img_4.png │ ├── img_5.png │ ├── img_6.png │ ├── img_7.png │ ├── img_8.png │ ├── img_9.png │ └── 代码生成配置1.png ├── swagger └── swagger.json └── template └── .gitkeep /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-language=GO -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/README.MD -------------------------------------------------------------------------------- /app/controller/Admin/AppGoodsInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/AppGoodsInfo.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseAppSpaceInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseAppSpaceInfo.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseAppSpaceType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseAppSpaceType.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseComm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseComm.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseOpen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseOpen.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysConf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysConf.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysDepartment.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysLog.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysMenu.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysParam.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysRole.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysRoleDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysRoleDepartment.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysRoleMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysRoleMenu.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysUser.go -------------------------------------------------------------------------------- /app/controller/Admin/BaseSysUserRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/BaseSysUserRole.go -------------------------------------------------------------------------------- /app/controller/Admin/DemoGo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/DemoGo.go -------------------------------------------------------------------------------- /app/controller/Admin/GenCodeConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/GenCodeConfig.go -------------------------------------------------------------------------------- /app/controller/Admin/GenCodeLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/GenCodeLog.go -------------------------------------------------------------------------------- /app/controller/Admin/TaskInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/TaskInfo.go -------------------------------------------------------------------------------- /app/controller/Admin/TaskLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Admin/TaskLog.go -------------------------------------------------------------------------------- /app/controller/Api/AppGoodsInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/AppGoodsInfo.go -------------------------------------------------------------------------------- /app/controller/Api/BaseAppSpaceInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseAppSpaceInfo.go -------------------------------------------------------------------------------- /app/controller/Api/BaseAppSpaceType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseAppSpaceType.go -------------------------------------------------------------------------------- /app/controller/Api/BaseComm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseComm.go -------------------------------------------------------------------------------- /app/controller/Api/BaseOpen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseOpen.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysConf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysConf.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysDepartment.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysLog.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysMenu.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysParam.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysRole.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysRoleDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysRoleDepartment.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysRoleMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysRoleMenu.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysUser.go -------------------------------------------------------------------------------- /app/controller/Api/BaseSysUserRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/BaseSysUserRole.go -------------------------------------------------------------------------------- /app/controller/Api/DemoGo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/DemoGo.go -------------------------------------------------------------------------------- /app/controller/Api/GenCodeConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/GenCodeConfig.go -------------------------------------------------------------------------------- /app/controller/Api/GenCodeLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/GenCodeLog.go -------------------------------------------------------------------------------- /app/controller/Api/TaskInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/TaskInfo.go -------------------------------------------------------------------------------- /app/controller/Api/TaskLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Api/TaskLog.go -------------------------------------------------------------------------------- /app/controller/Test/Test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Test/Test.go -------------------------------------------------------------------------------- /app/controller/Test/TestCaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Test/TestCaml.go -------------------------------------------------------------------------------- /app/controller/Ws/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/controller/Ws/websocket.go -------------------------------------------------------------------------------- /app/model/AppGoodsInfoModel/AppGoodsInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/AppGoodsInfoModel/AppGoodsInfo.go -------------------------------------------------------------------------------- /app/model/BaseAppSpaceInfoModel/BaseAppSpaceInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseAppSpaceInfoModel/BaseAppSpaceInfo.go -------------------------------------------------------------------------------- /app/model/BaseAppSpaceTypeModel/BaseAppSpaceType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseAppSpaceTypeModel/BaseAppSpaceType.go -------------------------------------------------------------------------------- /app/model/BaseCommModel/BaseComm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseCommModel/BaseComm.go -------------------------------------------------------------------------------- /app/model/BaseOpenModel/BaseOpen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseOpenModel/BaseOpen.go -------------------------------------------------------------------------------- /app/model/BaseSysConfModel/BaseSysConf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysConfModel/BaseSysConf.go -------------------------------------------------------------------------------- /app/model/BaseSysDepartmentModel/BaseSysDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysDepartmentModel/BaseSysDepartment.go -------------------------------------------------------------------------------- /app/model/BaseSysLogModel/BaseSysLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysLogModel/BaseSysLog.go -------------------------------------------------------------------------------- /app/model/BaseSysMenuModel/BaseSysMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysMenuModel/BaseSysMenu.go -------------------------------------------------------------------------------- /app/model/BaseSysParamModel/BaseSysParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysParamModel/BaseSysParam.go -------------------------------------------------------------------------------- /app/model/BaseSysRoleDepartmentModel/BaseSysRoleDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysRoleDepartmentModel/BaseSysRoleDepartment.go -------------------------------------------------------------------------------- /app/model/BaseSysRoleMenuModel/BaseSysRoleMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysRoleMenuModel/BaseSysRoleMenu.go -------------------------------------------------------------------------------- /app/model/BaseSysRoleModel/BaseSysRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysRoleModel/BaseSysRole.go -------------------------------------------------------------------------------- /app/model/BaseSysUserModel/BaseSysUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysUserModel/BaseSysUser.go -------------------------------------------------------------------------------- /app/model/BaseSysUserRoleModel/BaseSysUserRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/BaseSysUserRoleModel/BaseSysUserRole.go -------------------------------------------------------------------------------- /app/model/ContextModel/Context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/ContextModel/Context.go -------------------------------------------------------------------------------- /app/model/DemoGoModel/DemoGo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/DemoGoModel/DemoGo.go -------------------------------------------------------------------------------- /app/model/GenCodeConfigModel/GenCodeConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/GenCodeConfigModel/GenCodeConfig.go -------------------------------------------------------------------------------- /app/model/GenCodeLogModel/GenCodeLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/GenCodeLogModel/GenCodeLog.go -------------------------------------------------------------------------------- /app/model/GenTableColumnModel/GenTableColumn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/GenTableColumnModel/GenTableColumn.go -------------------------------------------------------------------------------- /app/model/GenTableModel/GenTable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/GenTableModel/GenTable.go -------------------------------------------------------------------------------- /app/model/GoodsModel/goods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/GoodsModel/goods.go -------------------------------------------------------------------------------- /app/model/TaskInfoModel/TaskInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/TaskInfoModel/TaskInfo.go -------------------------------------------------------------------------------- /app/model/TaskLogModel/TaskLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/TaskLogModel/TaskLog.go -------------------------------------------------------------------------------- /app/model/UserModel/User.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/model/UserModel/User.go -------------------------------------------------------------------------------- /app/service/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/service/AppGoodsInfoService/AppGoodsInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/AppGoodsInfoService/AppGoodsInfo.go -------------------------------------------------------------------------------- /app/service/BaseAppSpaceInfoService/BaseAppSpaceInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseAppSpaceInfoService/BaseAppSpaceInfo.go -------------------------------------------------------------------------------- /app/service/BaseAppSpaceTypeService/BaseAppSpaceType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseAppSpaceTypeService/BaseAppSpaceType.go -------------------------------------------------------------------------------- /app/service/BaseCommService/BaseComm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseCommService/BaseComm.go -------------------------------------------------------------------------------- /app/service/BaseOpenService/BaseOpen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseOpenService/BaseOpen.go -------------------------------------------------------------------------------- /app/service/BaseSysConfService/BaseSysConf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysConfService/BaseSysConf.go -------------------------------------------------------------------------------- /app/service/BaseSysDepartmentService/BaseSysDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysDepartmentService/BaseSysDepartment.go -------------------------------------------------------------------------------- /app/service/BaseSysLogService/BaseSysLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysLogService/BaseSysLog.go -------------------------------------------------------------------------------- /app/service/BaseSysMenuService/BaseSysMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysMenuService/BaseSysMenu.go -------------------------------------------------------------------------------- /app/service/BaseSysParamService/BaseSysParam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysParamService/BaseSysParam.go -------------------------------------------------------------------------------- /app/service/BaseSysRoleDepartmentService/BaseSysRoleDepartment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysRoleDepartmentService/BaseSysRoleDepartment.go -------------------------------------------------------------------------------- /app/service/BaseSysRoleMenuService/BaseSysRoleMenu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysRoleMenuService/BaseSysRoleMenu.go -------------------------------------------------------------------------------- /app/service/BaseSysRoleService/BaseSysRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysRoleService/BaseSysRole.go -------------------------------------------------------------------------------- /app/service/BaseSysUserRoleService/BaseSysUserRole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysUserRoleService/BaseSysUserRole.go -------------------------------------------------------------------------------- /app/service/BaseSysUserService/BaseSysUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/BaseSysUserService/BaseSysUser.go -------------------------------------------------------------------------------- /app/service/ContextService/ContextService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/ContextService/ContextService.go -------------------------------------------------------------------------------- /app/service/DemoGoService/DemoGo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/DemoGoService/DemoGo.go -------------------------------------------------------------------------------- /app/service/GenCodeConfigService/GenCodeConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/GenCodeConfigService/GenCodeConfig.go -------------------------------------------------------------------------------- /app/service/GenCodeLogService/GenCodeLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/GenCodeLogService/GenCodeLog.go -------------------------------------------------------------------------------- /app/service/TaskInfoService/TaskInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/TaskInfoService/TaskInfo.go -------------------------------------------------------------------------------- /app/service/TaskLogService/TaskLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/service/TaskLogService/TaskLog.go -------------------------------------------------------------------------------- /app/task/AppGoodsInoTask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/task/AppGoodsInoTask.go -------------------------------------------------------------------------------- /app/task/Main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/app/task/Main.go -------------------------------------------------------------------------------- /boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot/boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/boot/boot.go -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/config/config.example.toml -------------------------------------------------------------------------------- /config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/config/config.toml -------------------------------------------------------------------------------- /db/gf-easy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/db/gf-easy.sql -------------------------------------------------------------------------------- /document/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document/postman/localhost.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/document/postman/localhost.postman_collection.json -------------------------------------------------------------------------------- /document/sql/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/document/sql/create.sql -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/go.mod -------------------------------------------------------------------------------- /library/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/response/response.go -------------------------------------------------------------------------------- /library/utils/cache/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/utils/cache/main.go -------------------------------------------------------------------------------- /library/utils/captcha/captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/utils/captcha/captcha.go -------------------------------------------------------------------------------- /library/utils/captcha/redisStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/utils/captcha/redisStore.go -------------------------------------------------------------------------------- /library/utils/jwt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/utils/jwt/main.go -------------------------------------------------------------------------------- /library/utils/packObj/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/utils/packObj/main.go -------------------------------------------------------------------------------- /library/utils/slice_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/utils/slice_tree.go -------------------------------------------------------------------------------- /library/utils/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/library/utils/tools.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/main.go -------------------------------------------------------------------------------- /middleWare/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/middleWare/middleware.go -------------------------------------------------------------------------------- /packed/packed.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /packed/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/packed/swagger.go -------------------------------------------------------------------------------- /public/html/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/html/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/html/chat.html -------------------------------------------------------------------------------- /public/plugin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/layer.js -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/mobile/layer.js -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/mobile/need/layer.css -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/theme/default/icon-ext.png -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/theme/default/icon.png -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/theme/default/layer.css -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/theme/default/loading-0.gif -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/theme/default/loading-1.gif -------------------------------------------------------------------------------- /public/plugin/layer-3.1.1/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/plugin/layer-3.1.1/theme/default/loading-2.gif -------------------------------------------------------------------------------- /public/resource/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/resource/image/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/resource/image/ce2hday4j3js9qnemk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/resource/image/ce2hday4j3js9qnemk.png -------------------------------------------------------------------------------- /public/resource/image/ce7ls8387c6ohcrmdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/resource/image/ce7ls8387c6ohcrmdk.png -------------------------------------------------------------------------------- /public/resource/image/cedwpfw644vcajaux1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/resource/image/cedwpfw644vcajaux1.png -------------------------------------------------------------------------------- /public/resource/image/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/resource/image/cover.png -------------------------------------------------------------------------------- /public/resource/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/resource/image/favicon.ico -------------------------------------------------------------------------------- /public/resource/image/gf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/public/resource/image/gf.ico -------------------------------------------------------------------------------- /public/resource/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /router/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /router/adminRouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/router/adminRouter.go -------------------------------------------------------------------------------- /router/apiRouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/router/apiRouter.go -------------------------------------------------------------------------------- /router/openRouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/router/openRouter.go -------------------------------------------------------------------------------- /router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/router/router.go -------------------------------------------------------------------------------- /router/wsRouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/router/wsRouter.go -------------------------------------------------------------------------------- /screenshot/3d-GfEasy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/3d-GfEasy1.png -------------------------------------------------------------------------------- /screenshot/GfEasy-移动.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/GfEasy-移动.png -------------------------------------------------------------------------------- /screenshot/genCodeLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/genCodeLog.png -------------------------------------------------------------------------------- /screenshot/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img1.png -------------------------------------------------------------------------------- /screenshot/img100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img100.png -------------------------------------------------------------------------------- /screenshot/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_1.png -------------------------------------------------------------------------------- /screenshot/img_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_16.png -------------------------------------------------------------------------------- /screenshot/img_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_17.png -------------------------------------------------------------------------------- /screenshot/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_2.png -------------------------------------------------------------------------------- /screenshot/img_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_22.png -------------------------------------------------------------------------------- /screenshot/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_3.png -------------------------------------------------------------------------------- /screenshot/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_4.png -------------------------------------------------------------------------------- /screenshot/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_5.png -------------------------------------------------------------------------------- /screenshot/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_6.png -------------------------------------------------------------------------------- /screenshot/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_7.png -------------------------------------------------------------------------------- /screenshot/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/img_8.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img121.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_1.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_10.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_11.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_2.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_3.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_4.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_5.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_6.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_7.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_8.png -------------------------------------------------------------------------------- /screenshot/screenshot2/img_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/img_9.png -------------------------------------------------------------------------------- /screenshot/screenshot2/代码生成配置1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/screenshot/screenshot2/代码生成配置1.png -------------------------------------------------------------------------------- /swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonLaw1015/GfEasy/HEAD/swagger/swagger.json -------------------------------------------------------------------------------- /template/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------