/* eslint-disable */ // 该文件由 OneAPI 自动生成,请勿手动修改! declare namespace API { interface PageInfo { current?: number; pageSize?: number; total?: number; list?: Array<Record<string, any>>; } interface PageInfo_UserInfo_ { current?: number; pageSize?: number; total?: number; list?: Array<UserInfo>; } interface Result { code: number; msg: string; data?: Record<string, any>; } interface Result_PageInfo_UserInfo__ { code: number; msg: string; data?: PageInfo_UserInfo_; } interface UserInfoResult { code?: number; msg?: string; user: UserInfo; permissions: any; roles: any; } interface Result_string_ { success?: boolean; errorMessage?: string; data?: string; } type UserGenderEnum = 'MALE' | 'FEMALE'; interface UserInfo { userId?: string; userName?: string; nickName?: string; avatar?: string; sex?: string; email?: string; gender?: UserGenderEnum; unreadCount: number; address?: string; phonenumber?: string; dept?: Dept; roles?: Role[]; permissions: string[]; } interface UserInfoVO { name?: string; /** nick */ nickName?: string; /** email */ email?: string; } type definitions_0 = null; type MenuItemMeta = { title: string; icon: string; noCache: boolean; link: string; }; type RoutersMenuItem = { alwaysShow?: boolean; children?: RoutersMenuItem[]; component?: string; hidden?: boolean; meta: MenuItemMeta; name: string; path: string; redirect?: string; [key: string]: any; }; interface GetRoutersResult { code: number; msg: string; data: RoutersMenuItem[]; } type NoticeIconList = { data?: NoticeIconItem[]; /** 列表的内容总数 */ total?: number; success?: boolean; }; type NoticeIconItemType = 'notification' | 'message' | 'event'; type NoticeIconItem = { id?: string; extra?: string; key?: string; read?: boolean; avatar?: string; title?: string; status?: string; datetime?: string; description?: string; type?: NoticeIconItemType; }; export type MenuType = { menuId: number; menuName: string; parentId: string; orderNum: number; path: string; component: string; isFrame: number; isCache: number; menuType: string; visible: string; status: string; perms: string; icon: string; createBy: string; createTime: Date; updateBy: string; updateTime: Date; remark: string; }; export type MenuListParams = { menuId?: string; menuName?: string; parentId?: string; orderNum?: string; path?: string; component?: string; isFrame?: string; isCache?: string; menuType?: string; visible?: string; status?: string; perms?: string; icon?: string; createBy?: string; createTime?: string; updateBy?: string; updateTime?: string; remark?: string; pageSize?: string; currentPage?: string; filter?: string; sorter?: string; }; export type DictTypeType = { dictId: number; dictName: string; dictType: string; status: string; createBy: string; createTime: Date; updateBy: string; updateTime: Date; remark: string; }; export type DictTypeListParams = { dictId?: string; dictName?: string; dictType?: string; status?: string; createBy?: string; createTime?: string; updateBy?: string; updateTime?: string; remark?: string; pageSize?: string; currentPage?: string; filter?: string; sorter?: string; }; type CurrentUser = UserInfo & { signature?: string; title?: string; group?: string; tags?: { key?: string; label?: string }[]; notifyCount?: number; unreadCount?: number; country?: string; access?: string; geographic?: { province?: { label?: string; key?: string }; city?: { label?: string; key?: string }; }; address?: string; phone?: string; roleNames?: { roleName?: string; }[]; }; type ErrorResponse = { /** 业务约定的错误码 */ errorCode: string; /** 业务上的错误信息 */ errorMessage?: string; /** 业务上的请求是否成功 */ success?: boolean; }; type FakeCaptcha = { code?: number; status?: string; }; type getFakeCaptchaParams = { /** 手机号 */ phone?: string; }; type LoginParams = { username?: string; password?: string; uuid?: string; autoLogin?: boolean; type?: string; }; type LoginResult = { code: number; msg?: string; type?: string; data?: { access_token?: string; expires_in?: number; }; }; type NoticeIconItem = { id?: string; extra?: string; key?: string; read?: boolean; avatar?: string; title?: string; status?: string; datetime?: string; description?: string; type?: NoticeIconItemType; }; type NoticeIconItemType = 'notification' | 'message' | 'event'; type NoticeIconList = { data?: NoticeIconItem[]; /** 列表的内容总数 */ total?: number; success?: boolean; }; type PageParams = { current?: number; pageSize?: number; }; type RuleList = { data?: RuleListItem[]; /** 列表的内容总数 */ total?: number; success?: boolean; }; type RuleListItem = { key?: number; disabled?: boolean; href?: string; avatar?: string; name?: string; owner?: string; desc?: string; callNo?: number; status?: number; updatedAt?: string; createdAt?: string; progress?: number; }; type ruleParams = { /** 当前的页码 */ current?: number; /** 页面的容量 */ pageSize?: number; }; type ApiResponse = { code?: number; type?: string; message?: string; }; type Category = { id?: number; name?: string; }; type deleteOrderParams = { /** ID of the order that needs to be deleted */ orderId: number; }; type deletePetParams = { api_key?: string; /** Pet id to delete */ petId: number; }; type deleteUserParams = { /** The name that needs to be deleted */ username: string; }; type findPetsByStatusParams = { /** Status values that need to be considered for filter */ status: ('available' | 'pending' | 'sold')[]; }; type findPetsByTagsParams = { /** Tags to filter by */ tags: string[]; }; type getOrderByIdParams = { /** ID of pet that needs to be fetched */ orderId: number; }; type getPetByIdParams = { /** ID of pet to return */ petId: number; }; type getUserByNameParams = { /** The name that needs to be fetched. Use user1 for testing. */ username: string; }; type loginUserParams = { /** The user name for login */ username: string; /** The password for login in clear text */ password: string; }; type Order = { id?: number; petId?: number; quantity?: number; shipDate?: string; /** Order Status */ status?: 'placed' | 'approved' | 'delivered'; complete?: boolean; }; type Pet = { id?: number; category?: Category; name: string; photoUrls: string[]; tags?: Tag[]; /** pet status in the store */ status?: 'available' | 'pending' | 'sold'; }; type Tag = { id?: number; name?: string; }; type updatePetWithFormParams = { /** ID of pet that needs to be updated */ petId: number; }; type updateUserParams = { /** name that need to be updated */ username: string; }; type uploadFileParams = { /** ID of pet to update */ petId: number; }; type User = { id?: number; username?: string; firstName?: string; lastName?: string; email?: string; password?: string; phone?: string; /** User Status */ userStatus?: number; }; }