diff --git a/.gitignore b/.gitignore index cd65a64..4816e5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,18 @@ -node_modules .DS_Store -dist -dist-ssr -*.local -pnpm-lock.yaml \ No newline at end of file +node_modules/ +/dist/ +dist-ssr/ + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.project +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw* diff --git a/build/cool/dist/eps.d.ts b/build/cool/dist/eps.d.ts new file mode 100644 index 0000000..2d984ea --- /dev/null +++ b/build/cool/dist/eps.d.ts @@ -0,0 +1,1538 @@ +declare namespace Eps { + interface BaseSysDepartmentEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface BaseSysLogEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface BaseSysMenuEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface BaseSysParamEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface BaseSysRoleEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface BaseSysUserEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface DemoGoodsEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface DictInfoEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface DictTypeEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface PluginInfoEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface RecycleDataEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface SpaceInfoEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface SpaceTypeEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface TaskInfoEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface UserAddressEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface UserInfoEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface ChatMessageEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface ChatSessionEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface TestEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface DemoUserFollowEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + + interface DemoUserInfoEntity { + /** + * 任意键值 + */ + [key: string]: any; + } + interface BaseComm { + /** + * personUpdate + */ + "personUpdate"(data?: any): Promise; + /** + * uploadMode + */ + "uploadMode"(data?: any): Promise; + /** + * permmenu + */ + "permmenu"(data?: any): Promise; + /** + * person + */ + "person"(data?: any): Promise; + /** + * upload + */ + "upload"(data?: any): Promise; + /** + * logout + */ + "logout"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + personUpdate: string; + uploadMode: string; + permmenu: string; + person: string; + upload: string; + logout: string; + }; + /** + * 权限状态 + */ + _permission: { + personUpdate: boolean; + uploadMode: boolean; + permmenu: boolean; + person: boolean; + upload: boolean; + logout: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface BaseOpen { + /** + * refreshToken + */ + "refreshToken"(data?: any): Promise; + /** + * captcha + */ + "captcha"(data?: any): Promise; + /** + * login + */ + "login"(data?: any): Promise; + /** + * html + */ + "html"(data?: any): Promise; + /** + * eps + */ + "eps"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + refreshToken: string; + captcha: string; + login: string; + html: string; + eps: string; + }; + /** + * 权限状态 + */ + _permission: { + refreshToken: boolean; + captcha: boolean; + login: boolean; + html: boolean; + eps: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface BaseSysDepartment { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * order + */ + "order"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { delete: string; update: string; order: string; list: string; add: string }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + order: boolean; + list: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface BaseSysLog { + /** + * setKeep + */ + "setKeep"(data?: any): Promise; + /** + * getKeep + */ + "getKeep"(data?: any): Promise; + /** + * clear + */ + "clear"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: BaseSysLogEntity[]; + [key: string]: any; + }>; + /** + * 权限标识 + */ + permission: { setKeep: string; getKeep: string; clear: string; page: string }; + /** + * 权限状态 + */ + _permission: { setKeep: boolean; getKeep: boolean; clear: boolean; page: boolean }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface BaseSysMenu { + /** + * create + */ + "create"(data?: any): Promise; + /** + * export + */ + "export"(data?: any): Promise; + /** + * import + */ + "import"(data?: any): Promise; + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * parse + */ + "parse"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: BaseSysMenuEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + create: string; + export: string; + import: string; + delete: string; + update: string; + parse: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + create: boolean; + export: boolean; + import: boolean; + delete: boolean; + update: boolean; + parse: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface BaseSysParam { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * html + */ + "html"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: BaseSysParamEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + html: string; + info: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + html: boolean; + info: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface BaseSysRole { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: BaseSysRoleEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface BaseSysUser { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * move + */ + "move"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: BaseSysUserEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + move: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + move: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface DemoGoods { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: DemoGoodsEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: DemoGoodsEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface DemoUserFollow { + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: DemoUserFollowEntity[]; + [key: string]: any; + }>; + /** + * list + */ + "list"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + page: string; + list: string; + info: string; + delete: string; + update: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + page: boolean; + list: boolean; + info: boolean; + delete: boolean; + update: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface DemoUserInfo { + /** + * t1 + */ + "t1"(data?: any): Promise; + /** + * t2 + */ + "t2"(data?: any): Promise; + /** + * t3 + */ + "t3"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: DemoUserInfoEntity[]; + [key: string]: any; + }>; + /** + * list + */ + "list"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + t1: string; + t2: string; + t3: string; + page: string; + list: string; + info: string; + delete: string; + update: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + t1: boolean; + t2: boolean; + t3: boolean; + page: boolean; + list: boolean; + info: boolean; + delete: boolean; + update: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface DictInfo { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * data + */ + "data"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: DictInfoEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + data: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + data: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface DictType { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: DictTypeEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface PluginInfo { + /** + * install + */ + "install"(data?: any): Promise; + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: PluginInfoEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + install: string; + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + install: boolean; + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface RecycleData { + /** + * restore + */ + "restore"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: RecycleDataEntity[]; + [key: string]: any; + }>; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: RecycleDataEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { restore: string; info: string; page: string; list: string; add: string }; + /** + * 权限状态 + */ + _permission: { + restore: boolean; + info: boolean; + page: boolean; + list: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface SpaceInfo { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: SpaceInfoEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface SpaceType { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: SpaceTypeEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface TaskInfo { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * start + */ + "start"(data?: any): Promise; + /** + * once + */ + "once"(data?: any): Promise; + /** + * stop + */ + "stop"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: TaskInfoEntity[]; + [key: string]: any; + }>; + /** + * log + */ + "log"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + start: string; + once: string; + stop: string; + info: string; + page: string; + log: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + start: boolean; + once: boolean; + stop: boolean; + info: boolean; + page: boolean; + log: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface UserAddress { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: UserAddressEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface UserInfo { + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: UserInfoEntity[]; + [key: string]: any; + }>; + /** + * add + */ + "add"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + delete: string; + update: string; + info: string; + list: string; + page: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + delete: boolean; + update: boolean; + info: boolean; + list: boolean; + page: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface ChatMessage { + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: ChatMessageEntity[]; + [key: string]: any; + }>; + /** + * list + */ + "list"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + page: string; + list: string; + info: string; + delete: string; + update: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + page: boolean; + list: boolean; + info: boolean; + delete: boolean; + update: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface ChatSession { + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: ChatSessionEntity[]; + [key: string]: any; + }>; + /** + * list + */ + "list"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * update + */ + "update"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + page: string; + list: string; + info: string; + delete: string; + update: string; + add: string; + }; + /** + * 权限状态 + */ + _permission: { + page: boolean; + list: boolean; + info: boolean; + delete: boolean; + update: boolean; + add: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + interface Test { + /** + * page + */ + "page"(data?: any): Promise<{ + pagination: { size: number; page: number; total: number; [key: string]: any }; + list: TestEntity[]; + [key: string]: any; + }>; + /** + * update + */ + "update"(data?: any): Promise; + /** + * add + */ + "add"(data?: any): Promise; + /** + * info + */ + "info"(data?: any): Promise; + /** + * delete + */ + "delete"(data?: any): Promise; + /** + * list + */ + "list"(data?: any): Promise; + /** + * 权限标识 + */ + permission: { + page: string; + update: string; + add: string; + info: string; + delete: string; + list: string; + }; + /** + * 权限状态 + */ + _permission: { + page: boolean; + update: boolean; + add: boolean; + info: boolean; + delete: boolean; + list: boolean; + }; + /** + * 请求 + */ + request: Service["request"]; + } + + type json = any; + + type Service = { + request(options?: { + url: string; + method?: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS"; + data?: any; + params?: any; + headers?: { + [key: string]: any; + }; + timeout?: number; + proxy?: boolean; + [key: string]: any; + }): Promise; + base: { + comm: BaseComm; + open: BaseOpen; + sys: { + department: BaseSysDepartment; + log: BaseSysLog; + menu: BaseSysMenu; + param: BaseSysParam; + role: BaseSysRole; + user: BaseSysUser; + }; + }; + demo: { goods: DemoGoods; user: { follow: DemoUserFollow; info: DemoUserInfo } }; + dict: { info: DictInfo; type: DictType }; + plugin: { info: PluginInfo }; + recycle: { data: RecycleData }; + space: { info: SpaceInfo; type: SpaceType }; + task: { info: TaskInfo }; + user: { address: UserAddress; info: UserInfo }; + chat: { message: ChatMessage; session: ChatSession }; + test: Test; + }; +} diff --git a/build/cool/dist/eps.json b/build/cool/dist/eps.json new file mode 100644 index 0000000..fcd86a1 --- /dev/null +++ b/build/cool/dist/eps.json @@ -0,0 +1 @@ +[{"prefix":"/admin/base/comm","name":"","api":[{"method":"post","path":"/personUpdate"},{"method":"get","path":"/uploadMode"},{"method":"get","path":"/permmenu"},{"method":"get","path":"/person"},{"method":"post","path":"/upload"},{"method":"post","path":"/logout"}]},{"prefix":"/admin/base/open","name":"","api":[{"method":"get","path":"/refreshToken"},{"method":"get","path":"/captcha"},{"method":"post","path":"/login"},{"method":"get","path":"/html"},{"method":"get","path":"/eps"}]},{"prefix":"/admin/base/sys/department","name":"BaseSysDepartmentEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"post","path":"/order"},{"method":"post","path":"/list"},{"method":"post","path":"/add"}]},{"prefix":"/admin/base/sys/log","name":"BaseSysLogEntity","api":[{"method":"post","path":"/setKeep"},{"method":"get","path":"/getKeep"},{"method":"post","path":"/clear"},{"method":"post","path":"/page"}]},{"prefix":"/admin/base/sys/menu","name":"BaseSysMenuEntity","api":[{"method":"post","path":"/create"},{"method":"post","path":"/export"},{"method":"post","path":"/import"},{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"post","path":"/parse"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/base/sys/param","name":"BaseSysParamEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/html"},{"method":"get","path":"/info"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/base/sys/role","name":"BaseSysRoleEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/base/sys/user","name":"BaseSysUserEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"post","path":"/move"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/demo/goods","name":"DemoGoodsEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/dict/info","name":"DictInfoEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"post","path":"/data"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/dict/type","name":"DictTypeEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/plugin/info","name":"PluginInfoEntity","api":[{"method":"post","path":"/install"},{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/recycle/data","name":"RecycleDataEntity","api":[{"method":"post","path":"/restore"},{"method":"get","path":"/info"},{"method":"post","path":"/page"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/space/info","name":"SpaceInfoEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/space/type","name":"SpaceTypeEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/task/info","name":"TaskInfoEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"post","path":"/start"},{"method":"post","path":"/once"},{"method":"post","path":"/stop"},{"method":"get","path":"/info"},{"method":"post","path":"/page"},{"method":"get","path":"/log"},{"method":"post","path":"/add"}]},{"prefix":"/admin/user/address","name":"UserAddressEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"}]},{"prefix":"/admin/user/info","name":"UserInfoEntity","api":[{"method":"post","path":"/delete"},{"method":"post","path":"/update"},{"method":"get","path":"/info"},{"method":"post","path":"/list"},{"method":"post","path":"/page"},{"method":"post","path":"/add"},{"method":"post","path":"/add"}]}] \ No newline at end of file