reportdao.java

来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 121 行

JAVA
121
字号
package com.gs.pageBuilder.dao;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */
import java.util.*;
import java.util.ArrayList;
import com.gs.util.*;
import com.gs.pageBuilder.*;
import com.gs.pageBuilder.model.*;

public interface ReportDAO {

    /**
     * 获得登记机关列表
     * 应用:
     */
    public ArrayList getReportDJJGList(String  reportDJJG) throws AppException;


    /**
     * 得到报表公式数据
     * 应用:得到报表公式数据
     */
    public ArrayList getReportExpression(String page_code) throws AppException;

    /**
     * 得到报表记录数据
     * 应用:得到报表记录数据
     */
    public ReportPageModel getReportBuildPage(String code) throws AppException;

    /**
     * 得到报表记录数据 详细
     * 应用:得到报表记录数据
     */
    public ArrayList getReportBuildPage(ReportPageModel reportPageModel) throws AppException;


    /**
     * 得到报表数据[UNIVERSAL_REPORT_DATA] getReportBuildData
     * 应用:得到报表数据[UNIVERSAL_REPORT_DATA] getReportBuildData
     */
    public ReportPageDataModel getReportBuildData(String code) throws
        AppException;

    /**
      * 得到报表数据[UNIVERSAL_REPORT_DATA]
      * 应用:得到报表数据[report_data] getReportBuildData
      */
     public ArrayList getReportBuildData(ReportPageDataModel reportPageDataModel) throws
         AppException;

    /**
     * 添加报表数据
     *应用:添加报表数据[report_data]
     */
    public boolean addReportBuildData(ArrayList reportPageDataList,String report_code) throws
        AppException;

    /**
     * 添加报表数据
     *应用:添加报表数据[report_data]
     */
    public boolean addReportBuildData(ReportPageDataModel reportPageDataModel) throws
        AppException;

    /**
     * 添加报表记录数据
     *应用:报表生成形成报表记录数据
     */
    public String addReportBuildPage(ReportPageModel reportPageModel) throws
        AppException;

    /**
     * 删除报表数据
     *应用:删除报表数据[report_data]
     */
    public boolean dellReportBuildDataCode(String code) throws AppException;

    /**
     * 删除报表数据
     *应用:删除报表数据[report_data]
     */
    public boolean dellReportBuildDataPage(String page_code) throws
        AppException;

    /**
     * 删除报表记录数据
     *应用:
     */
    public boolean dellReportBuildPage(String page_code) throws AppException;

    /**
     * 修改报表数据
     *应用:修改报表数据[report_data]
     */
    public boolean editeReportBuildData(ReportPageDataModel reportPageDataModel) throws
        AppException;

    /**
     * 修改报表记录数据
     *应用:修改生成形成报表记录数据
     */
    public boolean editeReportBuildPage(ReportPageModel reportPageModel) throws
        AppException;

    /**
     * 删除报表数据 report_code
     *应用:删除报表数据[UNIVERSAL_REPORT_DATA]
     */
    public boolean dellReportBuildDataReportCode(String report_code) throws AppException;


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?