import Menu from "./_menu" import User from "./_user" import Role from "./_role" import Config from "./_config" import Org from "./_org" import Notice from "./_notice" import Post from "./_post" import Dict from "./_dict" import Auth from "./_auth" import LoginLog from "./_loginLog" import operLog from "./_operLog" import client from "./_client" export interface ISystemApi { menuApi: Menu userApi: User roleApi: Role configApi: Config orgApi: Org noticeApi: Notice postApi: Post dictApi: Dict authApi: Auth loginLogApi: LoginLog operLogApi: operLog clientApi: client } export const apis: ISystemApi = { menuApi: new Menu(), userApi: new User(), roleApi: new Role(), configApi: new Config(), orgApi: new Org(), noticeApi: new Notice(), postApi: new Post(), dictApi: new Dict(), authApi: new Auth(), loginLogApi: new LoginLog(), operLogApi: new operLog(), clientApi: new client() } export default apis