应收票据台账报表插件

This commit is contained in:
wenlukang1 2025-07-22 16:47:21 +08:00
parent 582c19fd76
commit 53358ced34
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package shkd.sys.sys.plugin.report;
import kd.bos.algo.DataSet;
import kd.bos.entity.report.AbstractReportListDataPlugin;
import kd.bos.entity.report.ReportQueryParam;
import kd.bos.report.plugin.AbstractReportFormPlugin;
import kd.sdk.plugin.Plugin;
/**
* 报表界面插件
*/
public class BillReceivableReportFormPlugin extends AbstractReportListDataPlugin {
@Override
public DataSet query(ReportQueryParam reportQueryParam, Object o) throws Throwable {
return null;
}
}