@@ -2,7 +2,6 @@ package model
22
33import (
44 "gorm.io/gorm"
5- "time"
65)
76
87type SysApi struct {
@@ -12,72 +11,3 @@ type SysApi struct {
1211 ApiGroup string `json:"apiGroup" gorm:"comment:'api组'"`
1312 Method string `json:"method" gorm:"default:'POST'" gorm:"comment:'方法'"`
1413}
15-
16- func SysApiData () []SysApi {
17- return []SysApi {
18- {gorm.Model {ID : 1 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/base/login" , "用户登录" , "base" , "POST" },
19- {gorm.Model {ID : 2 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/base/register" , "用户注册" , "base" , "POST" },
20- {gorm.Model {ID : 3 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/api/createApi" , "创建api" , "api" , "POST" },
21- {gorm.Model {ID : 4 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/api/getApiList" , "获取api列表" , "api" , "POST" },
22- {gorm.Model {ID : 5 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/api/getApiById" , "获取api详细信息" , "api" , "POST" },
23- {gorm.Model {ID : 6 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/api/deleteApi" , "删除Api" , "api" , "POST" },
24- {gorm.Model {ID : 7 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/api/updateApi" , "更新Api" , "api" , "POST" },
25- {gorm.Model {ID : 8 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/api/getAllApis" , "获取所有api" , "api" , "POST" },
26- {gorm.Model {ID : 9 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/authority/createAuthority" , "创建角色" , "authority" , "POST" },
27- {gorm.Model {ID : 10 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/authority/deleteAuthority" , "删除角色" , "authority" , "POST" },
28- {gorm.Model {ID : 11 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/authority/getAuthorityList" , "获取角色列表" , "authority" , "POST" },
29- {gorm.Model {ID : 12 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/getMenu" , "获取菜单树" , "menu" , "POST" },
30- {gorm.Model {ID : 13 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/getMenuList" , "分页获取基础menu列表" , "menu" , "POST" },
31- {gorm.Model {ID : 14 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/addBaseMenu" , "新增菜单" , "menu" , "POST" },
32- {gorm.Model {ID : 15 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/getBaseMenuTree" , "获取用户动态路由" , "menu" , "POST" },
33- {gorm.Model {ID : 16 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/addMenuAuthority" , "增加menu和角色关联关系" , "menu" , "POST" },
34- {gorm.Model {ID : 17 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/getMenuAuthority" , "获取指定角色menu" , "menu" , "POST" },
35- {gorm.Model {ID : 18 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/deleteBaseMenu" , "删除菜单" , "menu" , "POST" },
36- {gorm.Model {ID : 19 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/updateBaseMenu" , "更新菜单" , "menu" , "POST" },
37- {gorm.Model {ID : 20 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/menu/getBaseMenuById" , "根据id获取菜单" , "menu" , "POST" },
38- {gorm.Model {ID : 21 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/user/changePassword" , "修改密码" , "user" , "POST" },
39- {gorm.Model {ID : 23 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/user/getUserList" , "获取用户列表" , "user" , "POST" },
40- {gorm.Model {ID : 24 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/user/setUserAuthority" , "修改用户角色" , "user" , "POST" },
41- {gorm.Model {ID : 25 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/fileUploadAndDownload/upload" , "文件上传示例" , "fileUploadAndDownload" , "POST" },
42- {gorm.Model {ID : 26 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/fileUploadAndDownload/getFileList" , "获取上传文件列表" , "fileUploadAndDownload" , "POST" },
43- {gorm.Model {ID : 27 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/casbin/updateCasbin" , "更改角色api权限" , "casbin" , "POST" },
44- {gorm.Model {ID : 28 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/casbin/getPolicyPathByAuthorityId" , "获取权限列表" , "casbin" , "POST" },
45- {gorm.Model {ID : 29 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/fileUploadAndDownload/deleteFile" , "删除文件" , "fileUploadAndDownload" , "POST" },
46- {gorm.Model {ID : 30 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/jwt/jsonInBlacklist" , "jwt加入黑名单" , "jwt" , "POST" },
47- {gorm.Model {ID : 31 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/authority/setDataAuthority" , "设置角色资源权限" , "authority" , "POST" },
48- {gorm.Model {ID : 32 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/system/getSystemConfig" , "获取配置文件内容" , "system" , "POST" },
49- {gorm.Model {ID : 33 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/system/setSystemConfig" , "设置配置文件内容" , "system" , "POST" },
50- {gorm.Model {ID : 34 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/customer/customer" , "创建客户" , "customer" , "POST" },
51- {gorm.Model {ID : 35 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/customer/customer" , "更新客户" , "customer" , "PUT" },
52- {gorm.Model {ID : 36 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/customer/customer" , "删除客户" , "customer" , "DELETE" },
53- {gorm.Model {ID : 37 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/customer/customer" , "获取单一客户" , "customer" , "GET" },
54- {gorm.Model {ID : 38 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/customer/customerList" , "获取客户列表" , "customer" , "GET" },
55- {gorm.Model {ID : 39 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/casbin/casbinTest/:pathParam" , "RESTFUL模式测试" , "casbin" , "GET" },
56- {gorm.Model {ID : 40 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/autoCode/createTemp" , "自动化代码" , "autoCode" , "POST" },
57- {gorm.Model {ID : 41 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/authority/updateAuthority" , "更新角色信息" , "authority" , "PUT" },
58- {gorm.Model {ID : 42 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/authority/copyAuthority" , "拷贝角色" , "authority" , "POST" },
59- {gorm.Model {ID : 43 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/user/deleteUser" , "删除用户" , "user" , "DELETE" },
60- {gorm.Model {ID : 44 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionaryDetail/createSysDictionaryDetail" , "新增字典内容" , "sysDictionaryDetail" , "POST" },
61- {gorm.Model {ID : 45 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionaryDetail/deleteSysDictionaryDetail" , "删除字典内容" , "sysDictionaryDetail" , "DELETE" },
62- {gorm.Model {ID : 46 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionaryDetail/updateSysDictionaryDetail" , "更新字典内容" , "sysDictionaryDetail" , "PUT" },
63- {gorm.Model {ID : 47 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionaryDetail/findSysDictionaryDetail" , "根据ID获取字典内容" , "sysDictionaryDetail" , "GET" },
64- {gorm.Model {ID : 48 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionaryDetail/getSysDictionaryDetailList" , "获取字典内容列表" , "sysDictionaryDetail" , "GET" },
65- {gorm.Model {ID : 49 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionary/createSysDictionary" , "新增字典" , "sysDictionary" , "POST" },
66- {gorm.Model {ID : 50 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionary/deleteSysDictionary" , "删除字典" , "sysDictionary" , "DELETE" },
67- {gorm.Model {ID : 51 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionary/updateSysDictionary" , "更新字典" , "sysDictionary" , "PUT" },
68- {gorm.Model {ID : 52 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionary/findSysDictionary" , "根据ID获取字典" , "sysDictionary" , "GET" },
69- {gorm.Model {ID : 53 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysDictionary/getSysDictionaryList" , "获取字典列表" , "sysDictionary" , "GET" },
70- {gorm.Model {ID : 54 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysOperationRecord/createSysOperationRecord" , "新增操作记录" , "sysOperationRecord" , "POST" },
71- {gorm.Model {ID : 55 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysOperationRecord/deleteSysOperationRecord" , "删除操作记录" , "sysOperationRecord" , "DELETE" },
72- {gorm.Model {ID : 56 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysOperationRecord/findSysOperationRecord" , "根据ID获取操作记录" , "sysOperationRecord" , "GET" },
73- {gorm.Model {ID : 57 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysOperationRecord/getSysOperationRecordList" , "获取操作记录列表" , "sysOperationRecord" , "GET" },
74- {gorm.Model {ID : 58 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/autoCode/getTables" , "获取数据库表" , "autoCode" , "GET" },
75- {gorm.Model {ID : 59 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/autoCode/getDB" , "获取所有数据库" , "autoCode" , "GET" },
76- {gorm.Model {ID : 60 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/autoCode/getColume" , "获取所选table的所有字段" , "autoCode" , "GET" },
77- {gorm.Model {ID : 61 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/sysOperationRecord/deleteSysOperationRecordByIds" , "批量删除操作历史" , "sysOperationRecord" , "DELETE" },
78- {gorm.Model {ID : 62 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/simpleUploader/upload" , "插件版分片上传" , "simpleUploader" , "POST" },
79- {gorm.Model {ID : 63 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/simpleUploader/checkFileMd5" , "文件完整度验证" , "simpleUploader" , "GET" },
80- {gorm.Model {ID : 64 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/simpleUploader/mergeFileMd5" , "上传完成合并文件" , "simpleUploader" , "GET" },
81- {gorm.Model {ID : 65 , CreatedAt : time .Now (), UpdatedAt : time .Now ()}, "/user/setUserInfo" , "设置用户信息" , "user" , "PUT" },
82- }
83- }
0 commit comments