CN113849473A - Operation recording method, operation recording device, electronic device, and storage medium - Google Patents

Operation recording method, operation recording device, electronic device, and storage medium Download PDF

Info

Publication number
CN113849473A
CN113849473A CN202111096236.6A CN202111096236A CN113849473A CN 113849473 A CN113849473 A CN 113849473A CN 202111096236 A CN202111096236 A CN 202111096236A CN 113849473 A CN113849473 A CN 113849473A
Authority
CN
China
Prior art keywords
service
recording
needing
log
change
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
CN202111096236.6A
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.)
BOE Technology Group Co Ltd
Chongqing BOE Smart Technology Co Ltd
Original Assignee
BOE Technology Group Co Ltd
Chongqing BOE Smart Technology Co 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 BOE Technology Group Co Ltd, Chongqing BOE Smart Technology Co Ltd filed Critical BOE Technology Group Co Ltd
Priority to CN202111096236.6A priority Critical patent/CN113849473A/en
Publication of CN113849473A publication Critical patent/CN113849473A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/18File system types
    • G06F16/1805Append-only file systems, e.g. using logs or journals to store data
    • G06F16/1815Journaling file systems

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The application discloses an operation recording method and device, electronic equipment and a storage medium. The operation recording method comprises the following steps: receiving an operation request of a service; matching whether the service is the service needing the recording operation or not from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation; and if the service is the service needing to be recorded, recording an operation log of the service, wherein the operation log comprises the service data change condition of the service. Compared with the mode of adopting an annotation mode to configure the operation logs to be recorded in the related technology, the code intrusion is small, and in addition, the specific information can be determined to be modified by inquiring the operation logs, so that the tracing is convenient.

Description

Operation recording method, operation recording device, electronic device, and storage medium
Technical Field
The present application relates to the field of data processing technologies, and in particular, to an operation recording method and apparatus, an electronic device, and a storage medium.
Background
For many background management systems, the authority is high, and the number of people operating the system is high. Therefore, there is a need for recording of some operations, which can track the situation of operating the system.
In the related art, the operation log is usually used to track the operation of the system, for example, the method of using the Aspect (AOP) annotation to generally record which person operates, the operation address, the operation time, the operation behavior such as addition, deletion, and modification. But has the following disadvantages: the method for configuring the operation log to be recorded by adopting an annotation mode has strong code intrusiveness; the operation log records contents in a general manner, operation behaviors are intelligently known, but the condition of specific modified contents cannot be known, and the traceability is poor.
Disclosure of Invention
In view of the foregoing defects or shortcomings in the prior art, it is desirable to provide an operation recording method, apparatus, electronic device and storage medium, which are less code intrusive than a method in which an operation log needs to be recorded in a configuration using an annotation manner in the related art, and which specific information is modified by querying the operation log, thereby facilitating tracing.
In a first aspect, an embodiment of the present application provides an operation recording method, including:
receiving an operation request of a service;
matching whether the service is the service needing the recording operation or not from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation;
and if the service is the service needing to be recorded, recording an operation log of the service, wherein the operation log comprises the service data change condition of the service.
In a second aspect, an embodiment of the present application provides an operation recording apparatus, including:
the receiving module is used for receiving the operation request of the service;
the judging module is used for matching out whether the service is the service needing the recording operation from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation;
and the operation recording module is used for recording an operation log of the service when the service is the service needing to be operated, wherein the operation log comprises the service data change condition of the service.
In a third aspect, an embodiment of the present application provides an electronic device, which includes a memory, a processor, and a computer program stored in the memory and executable on the processor, and when the processor executes the computer program, the processor implements the operation recording method according to the first aspect.
In a fourth aspect, an embodiment of the present application provides a computer-readable storage medium, on which a computer program is stored, the computer program being used to implement the operation recording method according to the first aspect.
In a fifth aspect, the present application provides a computer program product, on which a computer program is stored, the computer program being used to implement the operation recording method according to the first aspect.
According to the operation recording method, the operation recording device, the electronic equipment and the storage medium, after the operation request of the service is received, whether the service is the service needing the operation recording or not is matched from the configuration file, and under the condition that the service is the service needing the operation recording, an operation log including the service data change condition is recorded. Compared with the mode of configuring the operation logs to be recorded by adopting an annotation mode in the related technology, the method has the advantages that the code intrusiveness is small, and in addition, the specific information can be determined by inquiring the operation logs, so that the tracing is convenient.
Drawings
Other features, objects and advantages of the present application will become more apparent upon reading of the following detailed description of non-limiting embodiments thereof, made with reference to the accompanying drawings in which:
FIG. 1 is a flow chart of an operation recording method according to an embodiment of the present application;
FIG. 2 is a schematic structural diagram of an operation recording apparatus according to an embodiment of the present application;
fig. 3 is a schematic structural diagram of an electronic device according to an embodiment of the present application;
FIG. 4 is a schematic diagram of an operation log in an operation recording method according to an embodiment of the present application;
fig. 5 is a schematic diagram illustrating viewing of an operation log in the operation recording method according to the embodiment of the present application.
Detailed Description
The present application will be described in further detail with reference to the following drawings and examples. It is to be understood that the specific embodiments described herein are merely illustrative of the relevant disclosure and are not limiting of the disclosure. It should be further noted that, for the convenience of description, only the portions relevant to the disclosure are shown in the drawings.
It should be noted that the embodiments and features of the embodiments in the present application may be combined with each other without conflict. The present application will be described in detail below with reference to the embodiments with reference to the attached drawings.
Fig. 1 is a flowchart of an operation recording method according to an embodiment of the present application, and as shown in fig. 1, the operation recording method according to an embodiment of the present application includes the following steps:
s101: an operation request of a service is received.
The operation of a user on a certain resource may be a service, for example: a user accesses a resource on a certain website system through a browser, and can perform operations such as adding, deleting, inquiring, modifying and the like on the resource.
For example, assuming an office system of a company, an employee may access various resources in the office system through a network, such as a new employee, and an administrator may add information of the employee to a person management Resource module in the office system, which is a service for adding information of the employee, and of course, if a certain employee leaves, the administrator deletes information of the employee from the person management Resource module in the office system, which is a service for deleting information of the employee, in this example, the person management Resource module is a Resource, and the Resource may be accessed through an address such as a URL (Uniform Resource Locator), so as to implement various operations on the Resource, for example: the resource is added, deleted, inquired, modified and the like in the above example, and the different operations are different operation types of the resource, so that a plurality of services are formed.
S102: and matching whether the service is the service needing the recording operation or not from a prestored configuration file based on the service operation request, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation.
In a specific example, there are some services that need to record an operation log, such as: for services such as deleting new employee information, adding new employee information, modifying employee information and the like, the operation log needs to be recorded, so that the time, the place and the person who deletes, adds or modifies the employee information of the employee can be known by inquiring the operation log in the later period.
Therefore, in the embodiment of the present invention, a plurality of services that need to record the operation log may be counted in advance, and then the configuration information may be added based on the plurality of services. For example: creating an operationLog.properties file (namely, a configuration file) under the resources directory of the project, and configuring a service needing to record an operation log. With the URL (i.e., the resource of the service) as a key, the values include, but are not limited to: operation information of the resource, such as: operation type, operation name, table name related to change, such as a master table related to change (primary key), a list table (foreign key), and the like, and a change field. In this example, the configuration information includes a service identifier and an operation configuration item, where the service identifier is the above-mentioned URL, i.e. key; the operation configuration items are the values mentioned above, such as: operation type, operation name, table name related to the change, and change field.
Assume that the URL of the human management resource module in the above embodiment is: http: // www.123.com/domain/XYZ, the ULR can be regarded as a key, and for the resource, the service needing to be recorded is: and modifying the employee information, then: the operation types include: and (5) modifying. The operation name is modified employee information, and if the indication related to the change is an employee information table, the field related to the change comprises: name field, job field. Suppose the operation request of the service is http for URL: and/www.123.com/domain/XYZ resources are used for modifying the employee information, and at the moment, the service can be matched to be the service needing the recording operation through a configuration file.
As a specific example, matching out whether the service is a service requiring a recording operation from a pre-stored configuration file based on an operation request of the service includes:
matching the service identification corresponding to the service from the configuration information; such as: matching to http: // www.123.com/domain/XYZ.
If the service identifier corresponding to the service is matched, matching an operation configuration item corresponding to the service identifier according to the operation corresponding to the operation request; such as: the service is a service for modifying employee information, namely: the operation name matched to the operation is to modify employee information.
If the operation configuration item corresponding to the service identifier is matched, determining that the service is the service needing the recording operation, that is to say: the operation of modifying the employee information by the above-mentioned person management resource module is a service that needs to record the operation.
S103: and if the service is the service needing to be recorded, recording an operation log of the service, wherein the operation log comprises service data change conditions of the service.
Specifically, the operation log for recording the service specifically includes: acquiring an operation type, an operation name and the table name related to change corresponding to the operation from the operation configuration item, and acquiring a field value of a changed field before the change and a field value of the changed field after the change according to the operation type; and obtaining the operation log based on the operation type, the operation name and the table name related to the change corresponding to the operation, the field value of the changed field before the change and the field value of the changed field after the change.
In a specific application, if the service is a service which needs to record operation, a preset section is called to record an operation log of the service, wherein the section comprises a program segment for recording the operation log. For example: and pre-establishing a tangent plane, and checking whether the operation needs to record an operation log or not through a configuration file in each tangent point. If necessary, depending on the type of operation, if modified, etc., the pre-modified values are taken before the method is executed, such as: the values of the name field and the title field before modification are stored in the database according to the operation type after the method is executed, the operator, the operation IP, the operation time, the table name of the operation, the main key of the operation table and the values of the associated detailed table before and after operation (namely the values of the name field and the title field after modification) are stored in the database, and in one embodiment of the invention, the whole record before and after operation can be in a json form. As shown in fig. 4, it is assumed that there are 3 operation logs, namely, adding, modifying, and deleting the corresponding 3 operation logs, and taking the addition as an example, the operation log records operation types of the addition, the operation name scheme addition, the operation IP, the URL service main key, the operation time, and after further clicking to view or compare, as shown in fig. 5, the operation before and after the operation is specifically demonstrated, that is: after a scheme is added, the fields in the tables are changed, and the specific changed values are as follows: for the operation of this new schema, the tables involved in the change in this example include the schema main table and the schema subject table, and the fields specifically involved in the change are shown in the two columns of attributes and values in each table in FIG. 5. Thus, the operation log can clearly check the operation behavior of the user.
According to the operation recording method of the embodiment of the invention, after the operation request of the service is received, whether the service is the service needing the operation of recording is matched from the configuration file, and under the condition that the service is the service needing the operation of recording, an operation log including the service data change condition is recorded. Compared with the mode of configuring the operation logs to be recorded by adopting an annotation mode in the related technology, the method has the advantages that the code intrusiveness is small, and in addition, the specific information can be determined by inquiring the operation logs, so that the tracing is convenient.
In an embodiment of the present invention, the operation recording method further includes: receiving an inquiry request sent by a terminal; and feeding back the inquired operation log to the terminal based on the inquiry request. For example: the operation logs in the latest period are searched in a paging mode, filtering can be carried out according to the operation names and the business table names, and the table, the values before modification and the values after modification of the fields in the table can be checked through clicking details.
Specifically, the main information of the operation log can be obtained by generating a corresponding paging SQL statement according to the conditions such as the name of the service table and the operation time. Further, the associated record can be acquired from the operation log list by the operation log master key, and the value before modification (json) and the value after modification (json) are stored for each piece of record. And comparing the json values before and after modification, analyzing the specific change condition of the changed field, and returning the change condition to the terminal. Has the advantage of convenient viewing.
On the other hand, as shown in fig. 2, an embodiment of the present application provides an operation recording apparatus, including: a receiving module 210, a judging module 220 and an operation recording module 230, wherein:
a receiving module 210, configured to receive an operation request of a service;
a determining module 220, configured to match, based on the operation request of the service, whether the service is a service that needs to be recorded and operated from a pre-stored configuration file, where the configuration file includes configuration information of a plurality of services that need to be recorded and operated;
the operation recording module 230 is configured to record an operation log of the service when the service is a service requiring a recording operation, where the operation log includes a service data change condition of the service.
In an embodiment of the present application, the configuration information includes a service identifier and an operation configuration item, where the matching, based on the operation request of the service, from a pre-stored configuration file to determine whether the service is a service that needs to be recorded includes:
matching the service identification corresponding to the service from the configuration information;
if the service identifier corresponding to the service is matched, matching an operation configuration item corresponding to the service identifier according to the operation corresponding to the operation request;
and if the operation configuration item corresponding to the service identification is matched, determining that the service is the service needing the record operation.
In one embodiment of the present application, the operation configuration item includes: operation type, operation name, table name related to the change, and change field.
In an embodiment of the present application, the recording an operation log of the service if the service is a service that needs to be recorded includes:
acquiring an operation type, an operation name and the table name related to change corresponding to the operation from the operation configuration item, and acquiring a field value of a changed field before the change and a field value of the changed field after the change according to the operation type;
and obtaining the operation log based on the operation type, the operation name and the table name related to the change corresponding to the operation, the field value of the changed field before the change and the field value of the changed field after the change.
In an embodiment of the present application, if the service is a service that needs to be logged, logging an operation log of the service includes:
and if the service is the service needing to be operated, calling a preset section to record an operation log of the service, wherein the section comprises a program segment for recording the operation log.
In one embodiment of the present application, further comprising:
receiving an inquiry request sent by a terminal;
and feeding back the inquired operation log to the terminal based on the inquiry request.
According to the operation recording device of the embodiment of the invention, after receiving the operation request of the service,
firstly, matching out whether the service is the service which needs to be recorded and operated from the configuration file, and recording an operation log comprising the service data change condition under the condition that the service is the service which needs to be recorded and operated. Compared with the mode of configuring the operation logs to be recorded by adopting an annotation mode in the related technology, the method has the advantages that the code intrusiveness is small, and in addition, the specific information can be determined by inquiring the operation logs, so that the tracing is convenient.
It should be noted that a specific implementation manner of the operation recording apparatus in the embodiment of the present application is similar to a specific implementation manner of the operation recording method in the embodiment of the present application, and please refer to the description of the method portion specifically, which is not described herein again.
Fig. 3 is a schematic structural diagram of an electronic device according to an embodiment of the present application.
As shown in fig. 3, the electronic apparatus 600 includes a Central Processing Unit (CPU)601 that can perform various appropriate actions and processes in accordance with a program stored in a Read Only Memory (ROM)602 or a program loaded from a storage section 602 into a Random Access Memory (RAM) 603. In the RAM 603, various programs and data necessary for the operation of the electronic apparatus 600 are also stored. The CPU 601, ROM602, and RAM 603 are connected to each other via a bus 604. An input/output (I/O) interface 605 is also connected to bus 604.
The following components are connected to the I/O interface 605: an input portion 606 including a keyboard, a mouse, and the like; an output portion 607 including a display such as a Cathode Ray Tube (CRT), a Liquid Crystal Display (LCD), and the like, and a speaker; a storage section 608 including a hard disk and the like; and a communication section 609 including a network interface card such as a LAN card, a modem, or the like. The communication section 609 performs communication processing via a network such as the internet. The driver 610 is also connected to the I/O interface 605 as needed. A removable medium 611 such as a magnetic disk, an optical disk, a magneto-optical disk, a semiconductor memory, or the like is mounted on the drive 610 as necessary, so that a computer program read out therefrom is mounted in the storage section 608 as necessary.
In particular, according to embodiments of the application, the processes described above with reference to the flow diagrams may be implemented as computer software programs. For example, embodiments of the present application include a computer program product comprising a computer program embodied on a machine-readable medium, the computer program comprising program code for performing the method illustrated in the flow chart. In such an embodiment, the computer program may be downloaded and installed from a network through the communication section 609, and/or installed from the removable medium 611. The above-described functions defined in the electronic device of the present application are executed when the computer program is executed by the Central Processing Unit (CPU) 601.
It should be noted that the computer readable medium shown in the present application may be a computer readable signal medium or a computer readable storage medium or any combination of the two. A computer readable storage medium may be, for example, but not limited to, an electronic device, apparatus, or device, electronic, magnetic, optical, electromagnetic, infrared, or semiconductor, or any combination thereof. More specific examples of the computer readable storage medium may include, but are not limited to: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a Random Access Memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the present application, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution electronic device, apparatus, or device. In this application, however, a computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated data signal may take many forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A computer readable signal medium may also be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution electronic device, apparatus, or device. Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to: wireless, wire, fiber optic cable, RF, etc., or any suitable combination of the foregoing.
The flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of processing receiving devices, methods and computer program products according to various embodiments of the present application. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based electronic devices that perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
The units or modules described in the embodiments of the present application may be implemented by software or hardware. The described units or modules may also be provided in a processor for implementing the operation recording method when executing the program: receiving an operation request of a service; matching whether the service is the service needing the recording operation or not from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation; and if the service is the service needing to be recorded, recording an operation log of the service, wherein the operation log comprises the service data change condition of the service.
As another aspect, the present application also provides a computer-readable storage medium, which may be included in the electronic device described in the above embodiments; or may be separate and not incorporated into the electronic device. The computer-readable storage medium stores one or more programs that, when executed by one or more processors, perform the operation recording method described in the present application: receiving an operation request of a service; matching whether the service is the service needing the recording operation or not from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation; and if the service is the service needing to be recorded, recording an operation log of the service, wherein the operation log comprises the service data change condition of the service.
As another aspect, the present application also provides a computer program product, which may be included in the electronic device described in the above embodiments; or may be separate and not incorporated into the electronic device. The computer program product stores one or more programs that, when executed by one or more processors, perform the operations recording method described herein: receiving an operation request of a service; matching whether the service is the service needing the recording operation or not from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation; and if the service is the service needing to be recorded, recording an operation log of the service, wherein the operation log comprises the service data change condition of the service.
The above description is only a preferred embodiment of the application and is illustrative of the principles of the technology employed. It will be appreciated by those skilled in the art that the scope of the disclosure herein is not limited to the particular combination of features described above, but also encompasses other arrangements formed by any combination of the above features or their equivalents without departing from the spirit of the disclosure. For example, the above features may be replaced with (but not limited to) features having similar functions disclosed in the present application.

Claims (10)

1. An operation recording method characterized by comprising:
receiving an operation request of a service;
matching whether the service is the service needing the recording operation or not from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation;
and if the service is the service needing to be recorded, recording an operation log of the service, wherein the operation log comprises the service data change condition of the service.
2. The operation recording method according to claim 1, wherein the configuration information includes a service identifier and an operation configuration item, and wherein the matching out whether the service is a service requiring a recording operation from a pre-stored configuration file based on the operation request of the service includes:
matching the service identification corresponding to the service from the configuration information;
if the service identifier corresponding to the service is matched, matching an operation configuration item corresponding to the service identifier according to the operation corresponding to the operation request;
and if the operation configuration item corresponding to the service identification is matched, determining that the service is the service needing the record operation.
3. The operation recording method according to claim 2, wherein the operation configuration item includes: operation type, operation name, table name related to the change, and change field.
4. The operation recording method according to claim 3, wherein the recording an operation log of the service if the service is a service requiring a recording operation, comprises:
acquiring an operation type, an operation name and the table name related to change corresponding to the operation from the operation configuration item, and acquiring a field value of a changed field before the change and a field value of the changed field after the change according to the operation type;
and obtaining the operation log based on the operation type, the operation name and the table name related to the change corresponding to the operation, the field value of the changed field before the change and the field value of the changed field after the change.
5. The operation recording method according to claim 1, wherein if the service is a service requiring a recording operation, recording an operation log of the service includes:
and if the service is the service needing to be operated, calling a preset section to record an operation log of the service, wherein the section comprises a program segment for recording the operation log.
6. The operation recording method according to any one of claims 1 to 5, further comprising:
receiving an inquiry request sent by a terminal;
and feeding back the inquired operation log to the terminal based on the inquiry request.
7. An operation recording apparatus characterized by comprising:
the receiving module is used for receiving the operation request of the service;
the judging module is used for matching out whether the service is the service needing the recording operation from a prestored configuration file based on the operation request of the service, wherein the configuration file comprises configuration information of a plurality of services needing the recording operation;
and the operation recording module is used for recording an operation log of the service when the service is the service needing to be operated, wherein the operation log comprises the service data change condition of the service.
8. An electronic device, characterized in that the electronic device comprises a memory, a processor and a computer program stored on the memory and executable on the processor, the processor being configured to implement the operation recording method according to any one of claims 1-6 when executing the program.
9. A computer-readable storage medium having stored thereon a computer program for implementing the operation recording method according to any one of claims 1 to 6 when the computer program is executed.
10. A computer program product, characterized in that a computer program is stored thereon, which computer program, when being executed, is adapted to carry out the operation recording method according to any one of claims 1-6.
CN202111096236.6A 2021-09-17 2021-09-17 Operation recording method, operation recording device, electronic device, and storage medium Pending CN113849473A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111096236.6A CN113849473A (en) 2021-09-17 2021-09-17 Operation recording method, operation recording device, electronic device, and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111096236.6A CN113849473A (en) 2021-09-17 2021-09-17 Operation recording method, operation recording device, electronic device, and storage medium

Publications (1)

Publication Number Publication Date
CN113849473A true CN113849473A (en) 2021-12-28

Family

ID=78974379

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111096236.6A Pending CN113849473A (en) 2021-09-17 2021-09-17 Operation recording method, operation recording device, electronic device, and storage medium

Country Status (1)

Country Link
CN (1) CN113849473A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115544050A (en) * 2022-11-29 2022-12-30 明度智云(浙江)科技有限公司 Operation log recording method, device, equipment and storage medium
CN115858466A (en) * 2023-02-07 2023-03-28 广州市千钧网络科技有限公司 Operation log generation method, device, equipment and medium
CN117407369A (en) * 2023-12-14 2024-01-16 宁德时代新能源科技股份有限公司 Operation log recording method and device and electronic equipment

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115544050A (en) * 2022-11-29 2022-12-30 明度智云(浙江)科技有限公司 Operation log recording method, device, equipment and storage medium
CN115858466A (en) * 2023-02-07 2023-03-28 广州市千钧网络科技有限公司 Operation log generation method, device, equipment and medium
CN115858466B (en) * 2023-02-07 2023-06-09 广州市千钧网络科技有限公司 Operation log generation method, device, equipment and medium
CN117407369A (en) * 2023-12-14 2024-01-16 宁德时代新能源科技股份有限公司 Operation log recording method and device and electronic equipment
CN117407369B (en) * 2023-12-14 2024-05-28 宁德时代新能源科技股份有限公司 Operation log recording method and device and electronic equipment

Similar Documents

Publication Publication Date Title
CN113849473A (en) Operation recording method, operation recording device, electronic device, and storage medium
CN111126948A (en) Processing method and device for approval process
CN109086414B (en) Method, apparatus and storage medium for searching blockchain data
CN112182138A (en) Catalog making method and device
CN110879808A (en) Information processing method and device
CN110866031B (en) Database access path optimization method and device, computing equipment and medium
CN112559024A (en) Method and device for generating transaction code change list
CN111858621B (en) Method, apparatus, device and computer readable medium for monitoring business process
CN108933802B (en) Method and apparatus for monitoring operation
CN111367500A (en) Data processing method and device
CN112765102B (en) File system management method and device
CN110309121B (en) Log processing method and device, computer readable medium and electronic equipment
CN109889402B (en) Method and apparatus for generating information
CN113011858A (en) Audit project configuration and execution method and device
CN113434754A (en) Method and device for determining recommended API (application program interface) service, electronic equipment and storage medium
CN108628909B (en) Information pushing method and device
CN111045983A (en) Nuclear power station electronic file management method and device, terminal equipment and medium
CN109783458B (en) Method and device for recording log change
CN112817603B (en) Application processing method, device, electronic equipment, system and storage medium
CN113268417B (en) Task execution method and device
CN115617839A (en) Method, device, electronic equipment and computer readable medium for inquiring verification data
CN115955327A (en) Interception authentication method and device based on document system
CN116361159A (en) Interface regression testing method, device, electronic equipment and computer readable medium
CN108509455B (en) Data table processing method and device
CN118101646A (en) Data downloading method, device, electronic equipment and computer readable medium

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