import ServiceBase from "./ServiceBase"; /** * 系统日志服务 */ export default class SystemLogService extends ServiceBase { async getList(reqeust: any) { let res = await super.post('SystemLog/GetList', reqeust); return res; } async exportSystemLog() { } }