import { Http,Util } from '@/utils'; import PrintLogicBase from './print-logic-base'; /** * 打印 * 基于 APP/src/service/%DE_PKGPATH%/%APP_DELOGIC%-logic.ts.ftl 生成 * @export * @class PrintLogic */ export default class PrintLogic extends PrintLogicBase{ /** * Creates an instance of PrintLogic * * @param {*} [opts={}] * @memberof PrintLogic */ constructor(opts: any = {}) { super(opts); } }