You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
605 B
26 lines
605 B
2 years ago
|
/*
|
||
|
* Copyright (C), 2018-2022
|
||
|
* Project: starter
|
||
|
* FileName: DocSummaryTab
|
||
|
* Author: xx
|
||
|
* Date: 2022/1/4 13:55
|
||
|
*/
|
||
|
package com.fr.plugin.ajhdf.provider;
|
||
|
|
||
|
import com.fr.design.beans.BasicStorePane;
|
||
|
import com.fr.design.fun.impl.AbstractExportAttrTabProvider;
|
||
|
import com.fr.plugin.ajhdf.ui.PdfExportPane;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <DocSummaryTab>
|
||
|
*
|
||
|
* @author xx
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class DocSummaryTab extends AbstractExportAttrTabProvider {
|
||
|
@Override
|
||
|
public BasicStorePane<?> toServiceComponent() {
|
||
|
return new PdfExportPane();
|
||
|
}
|
||
|
}
|