CN112036142A - Real-time report generation method and system based on data configuration - Google Patents

Real-time report generation method and system based on data configuration Download PDF

Info

Publication number
CN112036142A
CN112036142A CN202010908195.5A CN202010908195A CN112036142A CN 112036142 A CN112036142 A CN 112036142A CN 202010908195 A CN202010908195 A CN 202010908195A CN 112036142 A CN112036142 A CN 112036142A
Authority
CN
China
Prior art keywords
report
data
data processing
configuration
configuration table
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202010908195.5A
Other languages
Chinese (zh)
Inventor
窦玮
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Bank of China Ltd
Original Assignee
Bank of China Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Bank of China Ltd filed Critical Bank of China Ltd
Priority to CN202010908195.5A priority Critical patent/CN112036142A/en
Publication of CN112036142A publication Critical patent/CN112036142A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/10Text processing
    • G06F40/166Editing, e.g. inserting or deleting
    • G06F40/177Editing, e.g. inserting or deleting of tables; using ruled lines
    • G06F40/18Editing, e.g. inserting or deleting of tables; using ruled lines of spreadsheets
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/38Creation or generation of source code for implementing user interfaces

Abstract

The invention discloses a real-time report generation method and a system based on data configuration, wherein the method comprises the following steps: configuring a report configuration table in a database, wherein the report configuration table comprises: data processing functions and configuration information; acquiring a report processing request initiated by a front end, and extracting a report number and an individualized data processing condition; searching a corresponding report configuration table according to the report number; forming a data processing condition by the personalized data processing condition, the data processing function and the configuration information in the report configuration table, and processing the data by using a reflection mechanism to obtain report data; and writing the report data into the report file and feeding back the report data to the front end. The method and the system can complete the addition of a real-time report through a uniform configuration mode and a small amount of report characteristic codes, and the development efficiency is high; the general steps of report generation are encapsulated based on the configuration table, and the code reuse rate is high; and the report can be processed and managed uniformly based on the database configuration table, and the expandability is strong.

Description

Real-time report generation method and system based on data configuration
Technical Field
The present invention relates to the field of report processing technologies, and in particular, to a real-time report generating method and system based on data configuration.
Background
In the bank system, a report generated by processing and counting various data stored in the database is an important data source for business personnel, and the business personnel can better make analysis and decision according to the report.
The traditional report processing needs to perform corresponding complete program development for each report, and comprises but is not limited to a plurality of steps of front-end data interface, report authority control, report data processing, report file generation and the like; and, every time a report is added, a whole set of codes needs to be added.
The traditional report processing mode has at least the following defects:
1. the development efficiency is low; for each report, developers need to complete a whole set of report development, and the report development contains a large amount of repetitive codes, so that the development time is long and the efficiency is low.
2. The code reuse rate is low; the logic of report file generation in the same system is consistent, each report needs to repeatedly realize the related logic, and the code reuse rate is low.
3. Poor maintainability; if the report function needs to be uniformly changed or maintained, each report needs to be modified, so that the operation is inconvenient and errors are easy to miss. For a system with a large number of reports, developers need to perform development work of a large number of repeated report processing, a large amount of time and labor cost are spent, and the system is poor in maintainability and expandability.
In view of the above, a technical solution for improving a report generation mechanism, which can overcome the above problems, is needed.
Disclosure of Invention
In order to solve the problems in the prior art, the invention provides a real-time report generation method and a system based on data configuration, wherein the method and the system carry out encapsulation based on a configuration table on the general steps of generating the report, and the method comprises the steps of front-end data interface, report authority control, report data processing, report file generation and the like; a developer only needs to complete the database configuration (database table name, data processing method name, report column name and the like) of the required report and a small amount of report characteristic codes (data processing logic), so that a new report can be added quickly and efficiently, and the development efficiency and expandability are high.
In a first aspect of the embodiments of the present invention, a method for generating a real-time report based on data configuration is provided, where the method includes:
configuring a report configuration table in a database, wherein the report configuration table comprises: data processing functions and configuration information;
acquiring a report processing request initiated by a front end, and extracting a report number and an individualized data processing condition;
searching a corresponding report configuration table according to the report number;
forming a data processing condition by the personalized data processing condition, the data processing function and the configuration information in the report configuration table, and processing data by using a reflection mechanism to obtain report data;
and writing the report data into a report file and feeding back the report data to the front end.
Further, the configuration information at least includes: report number, report name, report column name, authority control column, screening column and sorting column.
Further, the data processing conditions are composed of the personalized data processing conditions, the data processing functions and the configuration information in the report configuration table, and the data processing is performed by using a reflection mechanism to obtain report data, and the method comprises the following steps:
forming data processing conditions by the data processing functions, the authority control columns, the screening condition columns, the sorting columns, the mechanisms to which the users belong and the personalized data processing conditions sent from the front end in the configuration table;
and processing the data by using a JAVA reflection mechanism to obtain report data.
Further, writing the report data into a report file and feeding back the report data to a front end includes:
writing the report name, the report column name and the report data in the report configuration table into a report file, and feeding back the report file to the front end; wherein the report file supports at least an xls or xlsx format.
In a second aspect of the embodiments of the present invention, a real-time report generating system based on data configuration is provided, where the system includes:
the report configuration module is used for configuring a report configuration table in a database, wherein the report configuration table comprises: data processing functions and configuration information;
the report processing request processing module is used for acquiring a report processing request initiated by a front end and extracting a report number and a personalized data processing condition;
the configuration table searching module is used for searching a corresponding report configuration table according to the report number;
the report data processing module is used for forming data processing conditions by the personalized data processing conditions, the data processing functions and the configuration information in the report configuration table, and processing data by using a reflection mechanism to obtain report data;
and the report data writing module is used for writing the report data into a report file and feeding the report file back to the front end.
Further, the configuration information at least includes: report number, report name, report column name, authority control column, screening column and sorting column.
Further, the report data processing module comprises:
the processing condition composition unit is used for composing the data processing functions, the authority control columns, the screening condition columns, the sorting columns, the mechanisms to which the users belong and the personalized data processing conditions sent from the front end in the configuration table into data processing conditions;
and the data processing unit is used for processing the data by utilizing a JAVA reflection mechanism to obtain report data.
Further, the report data writing module is specifically configured to:
writing the report name, the report column name and the report data in the report configuration table into a report file, and feeding back the report file to the front end; wherein the report file supports at least an xls or xlsx format.
In a third aspect of the embodiments of the present invention, a computer device is provided, which includes a memory, a processor, and a computer program stored on the memory and executable on the processor, where the processor implements a real-time report generation method based on data configuration when executing the computer program.
In a fourth aspect of the embodiments of the present invention, a computer-readable storage medium is provided, in which a computer program is stored, and the computer program, when executed by a processor, implements a real-time report generation method based on data configuration.
The real-time report generation method and the system based on data configuration can complete the addition of a real-time report through a uniform configuration mode and a small amount of report characteristic codes, and have high development efficiency; the general steps of report generation are encapsulated based on the configuration table, and the code reuse rate is high; and the report can be processed and managed uniformly based on the database configuration table, and the expandability is strong.
Drawings
In order to more clearly illustrate the technical solutions of the embodiments of the present application, the drawings needed to be used in the description of the embodiments are briefly introduced below, and it is obvious that the drawings in the following description are some embodiments of the present application, and it is obvious for those skilled in the art to obtain other drawings based on these drawings without creative efforts.
Fig. 1 is a schematic flow chart of a real-time report generation method based on data configuration according to an embodiment of the present invention.
FIG. 2 is a detailed flow diagram of data processing according to an embodiment of the present invention.
Fig. 3 is a flowchart illustrating a real-time report generation method based on data configuration according to an embodiment of the present invention.
Fig. 4 is a schematic structural diagram of a real-time report generation system based on data configuration according to an embodiment of the present invention.
Fig. 5 is a schematic diagram of a report data processing module according to an embodiment of the present invention.
Fig. 6 is a schematic structural diagram of a computer device according to an embodiment of the present invention.
Detailed Description
The principles and spirit of the present invention will be described with reference to a number of exemplary embodiments. It is understood that these embodiments are given solely for the purpose of enabling those skilled in the art to better understand and to practice the invention, and are not intended to limit the scope of the invention in any way. Rather, these embodiments are provided so that this disclosure will be thorough and complete, and will fully convey the scope of the disclosure to those skilled in the art.
As will be appreciated by one skilled in the art, embodiments of the present invention may be embodied as a system, apparatus, device, method, or computer program product. Accordingly, the present disclosure may be embodied in the form of: entirely hardware, entirely software (including firmware, resident software, micro-code, etc.), or a combination of hardware and software.
According to the embodiment of the invention, a real-time report generation method and a real-time report generation system based on data configuration are provided. The method and the system carry out encapsulation based on the configuration table on the general steps of generating the report, the front end sends the report number to the background through a uniform data interface, and the report can be processed and generated according to the report information in the configuration table. The development personnel can complete the addition of a real-time report through a uniform configuration mode and a small amount of report characteristic codes.
In the embodiments of the present invention, terms to be described include:
the JAVA reflection mechanism: in the running state, for any entity class, all the attributes and methods of the class can be known; any method and property can be called for any object.
The principles and spirit of the present invention are explained in detail below with reference to several representative embodiments of the invention.
Fig. 1 is a schematic flow chart of a real-time report generation method based on data configuration according to an embodiment of the present invention. As shown in fig. 1, the method includes:
step S1, configuring a report configuration table in the database, wherein the report configuration table includes: data processing functions and configuration information.
And step S2, acquiring a report processing request initiated by the front end, and extracting a report number and a personalized data processing condition.
And step S3, searching a corresponding report configuration table according to the report number.
And step S4, forming the data processing conditions by the personalized data processing conditions, the data processing functions and the configuration information in the report configuration table, and processing the data by using a reflection mechanism to obtain report data.
And step S5, writing the report data into a report file and feeding back the report data to the front end.
In one embodiment, the configuration information includes at least: report number, report name, report column name, authority control column, screening column and sorting column.
Fig. 2 is a schematic flow chart illustrating data processing according to an embodiment of the present invention. As shown in fig. 2, step S4 includes:
and step S41, forming data processing conditions by the data processing functions, the authority control columns, the screening condition columns, the sorting columns, the mechanisms to which the users belong and the personalized data processing conditions sent from the front end in the configuration table.
And step S42, processing data by using a JAVA reflection mechanism to obtain report data.
Further, the detailed flow of step S5 is:
writing the report name, the report column name and the report data in the report configuration table into a report file, and feeding back the report file to the front end; wherein the report file at least supports xls or xl sx format.
For a clearer explanation of the above real-time report generation method based on data configuration, a specific embodiment is described below, but it should be noted that the embodiment is only for better explaining the present invention, and is not to be construed as an undue limitation to the present invention.
Fig. 3 is a schematic flow chart of a real-time report generation method based on data configuration according to an embodiment of the present invention.
As shown in fig. 3, firstly, a report configuration table needs to be configured, and the specific process is as follows:
step S301, writing a query function for report processing.
Step S302, configuring a report configuration table. The report configuration table is mainly used for configuring a report number, a report name, a data processing function, a report column name, a permission control column, a data screening column, a sorting column and the like. Referring to Table 1, a table structure is configured for an exemplary report.
Table 1 report configuration table structure
Figure BDA0002662291970000051
Figure BDA0002662291970000061
In the report configuration table shown in table 1, the authority control field and the screening field are screening conditions for data processing, which are not essential and can be adjusted as needed.
After the configuration is completed, a real-time report can be generated, and the specific process is as follows:
step S303, the front end initiates a report processing request through a unified data interface, and sends a report number and a personalized data processing condition to the background.
Step S304, the background acquires the configuration information of the report configuration table according to the report number, and processes the data processing condition which is composed of the processing function, the authority control column, the screening condition column, the sorting column, the mechanism to which the user belongs and the condition sent from the front end.
And step S305, processing data by using a reflection mechanism according to the data processing conditions to obtain report data.
Step S306, writing the report name, the report column name, and the like acquired from the report configuration table and the processed report data into a report file, where the report file can support xls, xlsx, and other formats.
And step S307, feeding back the generated report file to the front end.
By utilizing the real-time report generation method based on data configuration, developers can complete the addition of a real-time report through a uniform configuration mode and a small amount of report characteristic codes, and the development efficiency is high; the general steps of report generation are encapsulated based on the configuration table, and the code reuse rate is high; meanwhile, the method also realizes the unified processing and management of the report based on the database configuration table, has strong expandability, and can be suitable for all reports only by modifying the configuration table and modifying the logic of the encapsulation part if the whole function of report processing needs to be expanded, such as increasing the automatic generation of the periodic report.
It should be noted that although the operations of the method of the present invention have been described in the above embodiments and the accompanying drawings in a particular order, this does not require or imply that these operations must be performed in this particular order, or that all of the operations shown must be performed, to achieve the desired results. Additionally or alternatively, certain steps may be omitted, multiple steps combined into one step execution, and/or one step broken down into multiple step executions.
Having described the method of the exemplary embodiment of the present invention, the data configuration-based real-time report generation system of the exemplary embodiment of the present invention will be described with reference to fig. 4 to 5.
The implementation of the real-time report generation system based on data configuration can refer to the implementation of the above method, and repeated details are not repeated. The term "module" or "unit" used hereinafter may be a combination of software and/or hardware that implements a predetermined function. Although the means described in the embodiments below are preferably implemented in software, an implementation in hardware, or a combination of software and hardware is also possible and contemplated.
Based on the same inventive concept, the invention also provides a real-time report generation system based on data configuration, as shown in fig. 4, the system comprises:
a configuration module 410, configured to configure a report configuration table in a database, where the report configuration table includes: data processing functions and configuration information;
the report processing request processing module 420 is configured to obtain a report processing request initiated by a front end, and extract a report number and a personalized data processing condition;
the configuration table searching module 430 is used for searching a corresponding report configuration table according to the report number;
the report data processing module 440 is configured to form a data processing condition from the personalized data processing condition, the data processing function in the report configuration table, and the configuration information, and perform data processing by using a reflection mechanism to obtain report data;
the report data writing module 450 is configured to write the report data into a report file and feed the report file back to the front end.
In one embodiment, the configuration information includes at least: report number, report name, report column name, authority control column, screening column and sorting column.
In an embodiment, referring to fig. 5, an architecture diagram of a report data processing module according to an embodiment of the present invention is shown. As shown in fig. 5, the report data processing module 440 includes:
a processing condition composition unit 441, configured to compose a data processing condition from the data processing function, the authority control field, the screening condition field, the sorting field, the organization to which the user belongs, and the personalized data processing condition uploaded by the front end in the configuration table;
the data processing unit 442 is configured to process data by using a JAVA reflection mechanism to obtain report data.
In an embodiment, the report data writing module 450 is specifically configured to:
writing the report name, the report column name and the report data in the report configuration table into a report file, and feeding back the report file to the front end; wherein the report file supports at least an xls or xlsx format.
It should be noted that although several modules of the data configuration-based real-time report generation system are mentioned in the above detailed description, such partitioning is merely exemplary and not mandatory. Indeed, the features and functionality of two or more of the modules described above may be embodied in one module according to embodiments of the invention. Conversely, the features and functions of one module described above may be further divided into embodiments by a plurality of modules.
Based on the aforementioned inventive concept, as shown in fig. 6, the present invention further provides a computer device 600, which includes a memory 610, a processor 620 and a computer program 630 stored on the memory 610 and operable on the processor 620, wherein the processor 620 implements the aforementioned real-time report generation method based on data configuration when executing the computer program 630.
Based on the foregoing inventive concept, the present invention provides a computer-readable storage medium, which stores a computer program, and the computer program, when executed by a processor, implements the aforementioned real-time report generation method based on data configuration.
The real-time report generation method and the system based on data configuration can complete the addition of a real-time report through a uniform configuration mode and a small amount of report characteristic codes, and have high development efficiency; the general steps of report generation are encapsulated based on the configuration table, and the code reuse rate is high; and the report can be processed and managed uniformly based on the database configuration table, and the expandability is strong.
As will be appreciated by one skilled in the art, embodiments of the present invention may be provided as a method, system, or computer program product. Accordingly, the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present invention may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The present invention is described with reference to flowchart illustrations and/or block diagrams of methods and computer program products according to embodiments of the invention. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
Finally, it should be noted that: the above-mentioned embodiments are only specific embodiments of the present invention, which are used for illustrating the technical solutions of the present invention and not for limiting the same, and the protection scope of the present invention is not limited thereto, although the present invention is described in detail with reference to the foregoing embodiments, those skilled in the art should understand that: any person skilled in the art can modify or easily conceive the technical solutions described in the foregoing embodiments or equivalent substitutes for some technical features within the technical scope of the present disclosure; such modifications, changes or substitutions do not depart from the spirit and scope of the embodiments of the present invention, and they should be construed as being included therein. Therefore, the protection scope of the present invention shall be subject to the protection scope of the claims.

Claims (10)

1. A real-time report generation method based on data configuration is characterized by comprising the following steps:
configuring a report configuration table in a database, wherein the report configuration table comprises: data processing functions and configuration information;
acquiring a report processing request initiated by a front end, and extracting a report number and an individualized data processing condition;
searching a corresponding report configuration table according to the report number;
forming a data processing condition by the personalized data processing condition, the data processing function and the configuration information in the report configuration table, and processing data by using a reflection mechanism to obtain report data;
and writing the report data into a report file and feeding back the report data to the front end.
2. The data configuration-based real-time report generation method according to claim 1, wherein the configuration information at least comprises: report number, report name, report column name, authority control column, screening column and sorting column.
3. The method for generating a real-time report based on data configuration according to claim 2, wherein the data processing conditions are composed of the personalized data processing conditions, the data processing functions and the configuration information in the report configuration table, and the data processing is performed by using a reflection mechanism to obtain the report data, and the method comprises:
forming data processing conditions by the data processing functions, the authority control columns, the screening condition columns, the sorting columns, the mechanisms to which the users belong and the personalized data processing conditions sent from the front end in the configuration table;
and processing the data by using a JAVA reflection mechanism to obtain report data.
4. The data configuration-based real-time report generation method according to claim 3, wherein writing the report data into a report file and feeding back the report data to a front end comprises:
writing the report name, the report column name and the report data in the report configuration table into a report file, and feeding back the report file to the front end; wherein the report file supports at least an xls or xlsx format.
5. A real-time report generation system based on data configuration is characterized by comprising:
the report configuration module is used for configuring a report configuration table in a database, wherein the report configuration table comprises: data processing functions and configuration information;
the report processing request processing module is used for acquiring a report processing request initiated by a front end and extracting a report number and a personalized data processing condition;
the configuration table searching module is used for searching a corresponding report configuration table according to the report number;
the report data processing module is used for forming data processing conditions by the personalized data processing conditions, the data processing functions and the configuration information in the report configuration table, and processing data by using a reflection mechanism to obtain report data;
and the report data writing module is used for writing the report data into a report file and feeding the report file back to the front end.
6. The data configuration-based real-time report generation system according to claim 5, wherein the configuration information at least comprises: report number, report name, report column name, authority control column, screening column and sorting column.
7. The data configuration-based real-time report generation system according to claim 6, wherein the report data processing module comprises:
the processing condition composition unit is used for composing the data processing functions, the authority control columns, the screening condition columns, the sorting columns, the mechanisms to which the users belong and the personalized data processing conditions sent from the front end in the configuration table into data processing conditions;
and the data processing unit is used for processing the data by utilizing a JAVA reflection mechanism to obtain report data.
8. The data configuration-based real-time report generation system according to claim 7, wherein the report data writing module is specifically configured to:
writing the report name, the report column name and the report data in the report configuration table into a report file, and feeding back the report file to the front end; wherein the report file supports at least an xls or xlsx format.
9. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, wherein the processor implements the method of any one of claims 1 to 4 when executing the computer program.
10. A computer-readable storage medium, characterized in that the computer-readable storage medium stores a computer program which, when executed by a processor, implements the method of any of claims 1 to 4.
CN202010908195.5A 2020-09-02 2020-09-02 Real-time report generation method and system based on data configuration Pending CN112036142A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010908195.5A CN112036142A (en) 2020-09-02 2020-09-02 Real-time report generation method and system based on data configuration

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010908195.5A CN112036142A (en) 2020-09-02 2020-09-02 Real-time report generation method and system based on data configuration

Publications (1)

Publication Number Publication Date
CN112036142A true CN112036142A (en) 2020-12-04

Family

ID=73591066

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010908195.5A Pending CN112036142A (en) 2020-09-02 2020-09-02 Real-time report generation method and system based on data configuration

Country Status (1)

Country Link
CN (1) CN112036142A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112861493A (en) * 2021-02-03 2021-05-28 河南开祥精细化工有限公司 Data analysis and summarization method, device, equipment and storage medium
CN113051881A (en) * 2021-04-02 2021-06-29 北京神州数字科技有限公司 Report display method based on parameter configuration

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105320690A (en) * 2014-07-30 2016-02-10 北京中海纪元数字技术发展股份有限公司 Metadata based rapid statistic form generation method and system
CN108959307A (en) * 2017-05-22 2018-12-07 平安科技(深圳)有限公司 Expansible data reporting method, system and storage medium
CN109766529A (en) * 2018-12-03 2019-05-17 中国联合网络通信集团有限公司 A kind of generation method and equipment of report
CN111563368A (en) * 2020-04-03 2020-08-21 江苏苏宁物流有限公司 Report generation method and device, computer equipment and storage medium
CN111611784A (en) * 2020-04-29 2020-09-01 平安科技(深圳)有限公司 Report generation method and device, terminal equipment and storage medium

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105320690A (en) * 2014-07-30 2016-02-10 北京中海纪元数字技术发展股份有限公司 Metadata based rapid statistic form generation method and system
CN108959307A (en) * 2017-05-22 2018-12-07 平安科技(深圳)有限公司 Expansible data reporting method, system and storage medium
CN109766529A (en) * 2018-12-03 2019-05-17 中国联合网络通信集团有限公司 A kind of generation method and equipment of report
CN111563368A (en) * 2020-04-03 2020-08-21 江苏苏宁物流有限公司 Report generation method and device, computer equipment and storage medium
CN111611784A (en) * 2020-04-29 2020-09-01 平安科技(深圳)有限公司 Report generation method and device, terminal equipment and storage medium

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112861493A (en) * 2021-02-03 2021-05-28 河南开祥精细化工有限公司 Data analysis and summarization method, device, equipment and storage medium
CN113051881A (en) * 2021-04-02 2021-06-29 北京神州数字科技有限公司 Report display method based on parameter configuration

Similar Documents

Publication Publication Date Title
CN103135976B (en) code automatic generation method and device
US8572616B2 (en) Apparatus, system, and method for managing z/OS batch jobs with prerequisites
CN106775744B (en) Method and device for generating static library
CN112558980A (en) Multi-software-package management method and device
CN106873949A (en) Code generating method and its device
US7305629B2 (en) Consolidation of computer documentation
CN111126019B (en) Report generation method and device based on mode customization and electronic equipment
US10338910B2 (en) Multi-tenant upgrading
CN112036142A (en) Real-time report generation method and system based on data configuration
US11150879B2 (en) Method and system for configuring processes of software applications using activity fragments
JP2021518021A (en) Data processing methods, equipment and computer readable storage media
CN110795091B (en) Modularized route decoupling method, storage medium, electronic equipment and system
CN106599167B (en) System and method for supporting increment updating of database
CN104516864A (en) Report generating method and report generating device
US20230333973A1 (en) Retrying failed test cases in software testing using parallel threads
CN110633258B (en) Log insertion method, device, computer device and storage medium
CN110989999A (en) Code generation method and device, electronic equipment and medium
EP3425510B1 (en) Automated testing method for application program user interface, electronic device, system, and storage medium
CN115630835A (en) Activity-based workflow general parameter configuration method and system
CN111459583B (en) Menu creation method and device
CN113901025A (en) Database management method, device, equipment and storage medium
CN1975691A (en) Method and apparatus for a database workload simulator
US20090276603A1 (en) Techniques for efficient dataloads into partitioned tables
CN112000414B (en) Configurable display method and device for parameter information
CN113190463B (en) Code testing method, node and system

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination