app-default-dereportview.tsx 419 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '../../../decorators';
import { AppDeReportViewBase } from '../app-common-view/app-dereportview-base';

/**
 * 应用实体报表视图
 *
 * @export
 * @class AppDefaultDeReportView
 * @extends {AppDeReportViewBase}
 */
@Component({})
@VueLifeCycleProcessing()
export class AppDefaultDeReportView extends AppDeReportViewBase {}