import { printRecordService } from '../service/database/PrintRecordService' class PrintRecord { public async listPage(args: any) { return printRecordService.getPage(args) } } PrintRecord.toString = () => '[class PrintRecord]' export default PrintRecord