import ServiceBase from "./ServiceBase"; /** * 打印服务 */ export default class PrintService extends ServiceBase { async GetPrintLogs() { } async GetPrinters() { } async GetPrintTemplates() { } async ScanPrinters() { } async Reprint() { } }