invoice-ui-service.ts 405 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import InvoiceUIServiceBase from './invoice-ui-service-base';

/**
 * 发票UI服务对象
 *
 * @export
 * @class InvoiceUIService
 */
export default class InvoiceUIService extends InvoiceUIServiceBase {

    /**
     * Creates an instance of  InvoiceUIService.
     * 
     * @param {*} [opts={}]
     * @memberof  InvoiceUIService
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}