import SysAuthLogUIServiceBase from './sys-auth-log-ui-service-base'; /** * 认证日志UI服务对象 * * @export * @class SysAuthLogUIService */ export default class SysAuthLogUIService extends SysAuthLogUIServiceBase { /** * Creates an instance of SysAuthLogUIService. * * @param {*} [opts={}] * @memberof SysAuthLogUIService */ constructor(opts: any = {}) { super(opts); } }