CN112732818A - C/S system-based docking method, device, medium and equipment - Google Patents

C/S system-based docking method, device, medium and equipment Download PDF

Info

Publication number
CN112732818A
CN112732818A CN202110070988.9A CN202110070988A CN112732818A CN 112732818 A CN112732818 A CN 112732818A CN 202110070988 A CN202110070988 A CN 202110070988A CN 112732818 A CN112732818 A CN 112732818A
Authority
CN
China
Prior art keywords
target interface
windows
window
handle
text
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.)
Granted
Application number
CN202110070988.9A
Other languages
Chinese (zh)
Other versions
CN112732818B (en
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.)
Kunyu Shandong Health Technology Co ltd
Original Assignee
Kunyu Shandong Health 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 Kunyu Shandong Health Technology Co ltd filed Critical Kunyu Shandong Health Technology Co ltd
Priority to CN202110070988.9A priority Critical patent/CN112732818B/en
Publication of CN112732818A publication Critical patent/CN112732818A/en
Application granted granted Critical
Publication of CN112732818B publication Critical patent/CN112732818B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/25Integrating or interfacing systems involving database management systems
    • G06F16/252Integrating or interfacing systems involving database management systems between a Database Management System and a front-end application
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4488Object-oriented

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Data Mining & Analysis (AREA)
  • User Interface Of Digital Computer (AREA)

Abstract

The invention provides a C/S system-based docking method, a C/S system-based docking device, a C/S system-based docking medium and C/S system-based docking equipment. The method comprises the steps of receiving a form input instruction, and acquiring a target interface and a control handle in a C/S system of a form to be input; based on the handle, positioning a target interface by using a windows built-in function; using windows built-in function to set the target interface to the top for displaying; assigning a value to a window of a text box in a target interface by using a sendwait method, wherein the text content is directly used as a parameter when the value is assigned and is transmitted to the target interface by a sender; switching to the next assignment window by using a SendWait ("{ TAB }") method; storing all windows after the window assignment is finished, traversing the windows by using a FindWindowEx method, and determining whether the window assignment is finished according to whether the windows are traversed to a message prompt box which is successfully stored; and after all forms are assigned, simulating a mouse click event according to the coordinate position of the target interface storage button to store the target interface, determining whether the storage is successful according to the prompt information, and finishing the form entry if the storage is successful.

Description

C/S system-based docking method, device, medium and equipment
Technical Field
The invention belongs to the field of data docking, and particularly relates to a docking method, a docking device, a docking medium and docking equipment based on a C/S system.
Background
The statements in this section merely provide background information related to the present disclosure and may not necessarily constitute prior art.
C/S is an abbreviation for Client/Server, servers typically employ high performance PCs, workstations or minicomputers, and employ large database systems such as Oracle, Sybase, Informix or SQLServer. The client needs to install dedicated client software. The C/S is generally established on a private network, and provides connection and data exchange services between local area networks and through a private server in a small-scale network environment.
For example: for a basic public health management system, the system is implemented based on a C/S system. When a user of the existing basic public health management system inputs a form into the system, manual input is needed, the workload is large, mistakes are easy to make, once data input is wrong, checking is complicated, if the data input is wrong, the accuracy of the basic public health management system can be influenced, the diagnosis and treatment scheme of a patient can be seriously influenced, deviation occurs in the diagnosis and treatment scheme, and therefore the diagnosis and treatment effect is influenced.
Moreover, the existing C/S system has the characteristics of long service life, lack of maintenance, large workload of interface development and high charge, and the inventor finds that when a user inputs form information into the C/S system, the work load is large, monotonous, boring and easy to record errors.
Disclosure of Invention
In order to solve at least one technical problem in the background art, the invention provides a docking method, a docking device, a docking medium and docking equipment based on a C/S system, which can realize the input work of characters in a mode of simulating a mouse and a keyboard under the condition that the C/S system does not open an interface.
In order to achieve the purpose, the invention adopts the following technical scheme:
the invention provides a docking method based on a C/S system in a first aspect.
A docking method based on a C/S system comprises the following steps:
receiving a form input instruction, and acquiring a target interface and a control handle in a C/S system of a form to be input;
based on the handle, positioning a target interface by using a windows built-in function;
using windows built-in function to set the target interface to the top for displaying;
assigning a value to a window of a text box in a target interface by using a sendwait method, wherein the text content is directly used as a parameter when the value is assigned and is transmitted to the target interface by a sender; presetting a corresponding storage position and a sending sequence of the text content at a sender side based on the corresponding relation between the text content and the position of a text box of a target interface;
switching to the next assignment window by using a SendWait ("{ TAB }") method;
storing all windows after the window assignment is finished, traversing the windows by using a FindWindowEx method, and determining whether the window assignment is finished according to whether the windows are traversed to a message prompt box which is successfully stored;
and after all forms are assigned, simulating a mouse click event according to the coordinate position of the target interface storage button to store the target interface, determining whether the storage is successful according to the prompt information, and finishing the form entry if the storage is successful.
As an implementation mode, based on a handle, a windows built-in function FindWindow and FindWindowEx are used for positioning a target interface.
As one embodiment, the target interface is displayed at the top using the windows built-in function SetForegroundWindow.
As one embodiment, a mouse click event is simulated using the windows built-in function mouse _ event.
As an embodiment, the drop-DOWN box of the window is assigned using SendWait ("{ DOWN }") method.
In one embodiment, before the text content is directly transmitted to the target interface as a parameter by the sender at the time of value assignment, the method further includes:
and detecting whether the text content contains Chinese and English and special symbols, if so, classifying the text content, splicing the similar text contents, and successively transmitting the similar text contents to a target interface according to the text content type.
As an implementation mode, a key puck is adopted to obtain handles of a target interface and a control in a C/S system of a form to be input.
The invention provides a docking device based on a C/S system in a second aspect.
A docking apparatus based on a C/S system, comprising:
the target interface and handle acquisition module is used for receiving the form input instruction and acquiring the handle of the target interface and the control in the C/S system of the form to be input;
the target interface positioning module is used for positioning a target interface by using a windows built-in function based on the handle;
the target interface top setting module is used for displaying the target interface top setting by using a windows built-in function;
the window assignment module is used for assigning a window of a text box in the target interface by using a sendwait method, and text contents are directly used as parameters to be transmitted to the target interface by a sender when the value is assigned; presetting a corresponding storage position and a sending sequence of the text content at a sender side based on the corresponding relation between the text content and the position of a text box of a target interface;
the window switching module is used for switching to the next assignment window by using a SendWait ("{ TAB }") method;
the window assignment end judging module is used for storing all windows after window assignment is finished, traversing the windows by using a FindWindowEx method, and determining whether all window assignment is finished according to whether the windows are traversed to a message prompt box which is successfully stored;
and the form entry ending judgment module is used for simulating a mouse click event to save the target interface according to the coordinate position of the target interface saving button after all forms are assigned, determining whether the saving is successful according to the prompt information, and ending the form entry if the saving is successful.
A third aspect of the invention provides a computer-readable storage medium.
A computer-readable storage medium, on which a computer program is stored, which program, when being executed by a processor, carries out the steps of a C/S system based docking method as set forth above.
A fourth aspect of the invention provides a computer apparatus.
A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, the processor implementing the steps in a C/S system based docking method as described above when executing the program.
Compared with the prior art, the invention has the beneficial effects that:
(1) when the C/S system of the form to be recorded is in communication connection with the form data storage device, the form data storage device sends a form recording instruction to the C/S system of the form to be recorded, the C/S system of the form to be recorded acquires a corresponding target interface and a handle of a control, the target interface is positioned based on the handle, and high-standard data recording work is realized through a windows built-in function under the condition that the C/S system of the form to be recorded does not open the interface, so that the working efficiency and the quality are greatly improved.
(2) The invention greatly saves the development manpower and capital cost of the C/S system developer interface and improves the data entry efficiency.
Advantages of additional aspects of the invention will be set forth in part in the description which follows, and in part will be obvious from the description, or may be learned by practice of the invention.
Drawings
The accompanying drawings, which are incorporated in and constitute a part of this specification, are included to provide a further understanding of the invention, and are incorporated in and constitute a part of this specification, illustrate exemplary embodiments of the invention and together with the description serve to explain the invention and not to limit the invention.
FIG. 1 is a flow chart of a docking method based on a C/S system according to an embodiment of the present invention;
fig. 2 is a schematic structural diagram of a docking device based on a C/S system according to an embodiment of the present invention.
Detailed Description
The invention is further described with reference to the following figures and examples.
It is to be understood that the following detailed description is exemplary and is intended to provide further explanation of the invention as claimed. Unless defined otherwise, all technical and scientific terms used herein have the same meaning as commonly understood by one of ordinary skill in the art to which this invention belongs.
It is noted that the terminology used herein is for the purpose of describing particular embodiments only and is not intended to be limiting of exemplary embodiments according to the invention. As used herein, the singular forms "a", "an" and "the" are intended to include the plural forms as well, and it should be understood that when the terms "comprises" and/or "comprising" are used in this specification, they specify the presence of stated features, steps, operations, devices, components, and/or combinations thereof, unless the context clearly indicates otherwise.
Example one
Referring to fig. 1, the docking method based on the C/S system of the present embodiment includes:
step S101: and receiving a form input instruction, and acquiring a handle of a target interface and a control in the C/S system of the form to be input.
In the specific implementation, a key sprite is adopted to obtain a handle of a target interface and a control in a C/S system of a form to be input.
It should be noted here that besides the key sprite, a person skilled in the art may also use other ways to obtain handles of target interfaces and controls in the C/S system of the form to be entered.
Wherein:
and (4) control:
controls refer to the encapsulation of data and methods. The widget may have its own properties and methods, where a property is a simple visitor to the widget data, and a method is some simple and visible functions of the widget, and the widget creation process includes designing, developing, debugging (so-called 3Ds development flow, i.e., Design, devilop, Debug) work, and then the use of the widget.
Handle:
a Handle (Handle) is an identifier used to identify an object or item, and may be used to describe a form, a file, etc., and it should be noted that a Handle cannot be a constant. The reason why Windows needs to establish a handle is basically derived from the problem of the memory management mechanism, namely, the virtual address. In short, the address of the data needs to be changed, and the change needs to be recorded and managed by someone after the change, so the system records the change of the data address by using a handle. In programming, a handle is a special smart pointer, and is used when an application program needs to refer to a memory block or an object managed by another system (such as a database or an operating system).
Step S102: and based on the handle, positioning the target interface by using a windows built-in function.
In a specific implementation, a windows built-in function FindWindow and findwindowEx are used to locate a target interface based on a handle.
Step S103: and using windows built-in function to set the target interface to the top for displaying.
In a specific implementation, the target interface is displayed at the top using the windows built-in function SetForegroundWindow.
Step S104: and assigning a value to the window of the text box in the target interface by using a sendwait method, wherein the text content is directly used as a parameter when the value is assigned and is transmitted to the target interface by a sender. And presetting a corresponding storage position and a sending sequence of the text content at the sender side based on the corresponding relation between the text content and the position of the text box of the target interface.
In the specific implementation, before the text content is directly used as a parameter to be transmitted to the target interface by the sender during the assignment, the method further comprises the following steps:
and detecting whether the text content contains Chinese and English and special symbols, if so, classifying the text content, splicing the similar text contents, and successively transmitting the similar text contents to a target interface according to the text content type.
Therefore, the conditions of messy codes and abnormal input can be avoided, and the accuracy of text input and form entry is improved.
For example: the types of text content are divided into: chinese, English, numeric and special symbols;
the text contents of the types and the similar contents are spliced and stored correspondingly according to the actual position of the target interface to be input, and the text contents are correspondingly sent to a C/S system of the form to be input by a sender.
In specific implementation, in order to avoid data transmission repetition and improve accuracy and efficiency of data transmission, the embodiment also sets the priority of the text content type.
Such as: the priority of Chinese is greater than the priority of English, the priority of English is greater than the priority of numeral, and the priority of numeral is greater than the priority of special symbol.
It should be noted here that the priority of the text content type can be set by those skilled in the art according to the actual situation.
The text content processing program is specifically as follows:
Figure BDA0002905771150000081
step S105: the SendWait ("{ TAB }") method is used to switch to the next assignment window.
Specifically, the drop-DOWN box of the window is assigned using the SendWait ("{ DOWN }") method.
Step S106: and storing all windows after the window assignment is finished, traversing the windows by using a FindWindowEx method, and determining whether the window assignment is finished according to whether the windows are traversed to a message prompt box which is successfully stored.
Step S107: and after all forms are assigned, simulating a mouse click event according to the coordinate position of the target interface storage button to store the target interface, determining whether the storage is successful according to the prompt information, and finishing the form entry if the storage is successful.
Specifically, a mouse click event is simulated using the windows built-in function mouse _ event.
Example two
As shown in fig. 2, the present embodiment provides a docking apparatus based on a C/S system, which includes:
the target interface and handle acquisition module is used for receiving the form input instruction and acquiring the handle of the target interface and the control in the C/S system of the form to be input;
the target interface positioning module is used for positioning a target interface by using a windows built-in function based on the handle;
the target interface top setting module is used for displaying the target interface top setting by using a windows built-in function;
the window assignment module is used for assigning a window of a text box in the target interface by using a sendwait method, and text contents are directly used as parameters to be transmitted to the target interface by a sender when the value is assigned; presetting a corresponding storage position and a sending sequence of the text content at a sender side based on the corresponding relation between the text content and the position of a text box of a target interface;
the window switching module is used for switching to the next assignment window by using a SendWait ("{ TAB }") method;
the window assignment end judging module is used for storing all windows after window assignment is finished, traversing the windows by using a FindWindowEx method, and determining whether all window assignment is finished according to whether the windows are traversed to a message prompt box which is successfully stored;
and the form entry ending judgment module is used for simulating a mouse click event to save the target interface according to the coordinate position of the target interface saving button after all forms are assigned, determining whether the saving is successful according to the prompt information, and ending the form entry if the saving is successful.
It should be noted that, each module in the docking apparatus based on the C/S system in the present embodiment corresponds to each step in the docking method based on the C/S system in the first embodiment one by one, and the specific implementation process is the same, and will not be described again here.
EXAMPLE III
The present embodiment provides a computer-readable storage medium, on which a computer program is stored, which when executed by a processor implements the steps in the C/S system based docking method as described in the first embodiment above.
Example four
The embodiment provides a computer 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 steps in the C/S system-based docking method as described in the first embodiment.
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 a hardware embodiment, a 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, 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, apparatus (systems), 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.
It will be understood by those skilled in the art that all or part of the processes of the methods of the embodiments described above can be implemented by a computer program, which can be stored in a computer-readable storage medium, and when executed, can include the processes of the embodiments of the methods described above. The storage medium may be a magnetic disk, an optical disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), or the like.
The above description is only a preferred embodiment of the present invention and is not intended to limit the present invention, and various modifications and changes may be made by those skilled in the art. Any modification, equivalent replacement, or improvement made within the spirit and principle of the present invention should be included in the protection scope of the present invention.

Claims (10)

1. A docking method based on a C/S system is characterized by comprising the following steps:
receiving a form input instruction, and acquiring a target interface and a control handle in a C/S system of a form to be input;
based on the handle, positioning a target interface by using a windows built-in function;
using windows built-in function to set the target interface to the top for displaying;
assigning a value to a window of a text box in a target interface by using a sendwait method, wherein the text content is directly used as a parameter when the value is assigned and is transmitted to the target interface by a sender; presetting a corresponding storage position and a sending sequence of the text content at a sender side based on the corresponding relation between the text content and the position of a text box of a target interface;
switching to the next assignment window by using a SendWait ("{ TAB }") method;
storing all windows after the window assignment is finished, traversing the windows by using a FindWindowEx method, and determining whether the window assignment is finished according to whether the windows are traversed to a message prompt box which is successfully stored;
and after all forms are assigned, simulating a mouse click event according to the coordinate position of the target interface storage button to store the target interface, determining whether the storage is successful according to the prompt information, and finishing the form entry if the storage is successful.
2. The C/S system based docking method of claim 1, wherein the target interface is located using windows built-in functions FindWindow and FindWindowEx based on a handle.
3. The docking method based on the C/S system as claimed in claim 1, wherein the target interface is displayed on top using windows built-in function setforegrounndwindow.
4. The docking method based on the C/S system as claimed in claim 1, wherein a mouse click event is simulated using a windows built-in function mouse _ event.
5. A docking method based on a C/S system according to claim 1, characterized in that the drop-DOWN box of the window is assigned with a SendWait ("{ DOWN }") method.
6. The C/S system based docking method as claimed in claim 1, wherein the text content is directly transmitted as a parameter to the target interface by the sender at the time of assigning, further comprising:
and detecting whether the text content contains Chinese and English and special symbols, if so, classifying the text content, splicing the similar text contents, and successively transmitting the similar text contents to a target interface according to the text content type.
7. The C/S system-based docking method as claimed in claim 1, wherein a handle of a target interface and a control in the C/S system of the form to be entered is obtained by using a key sprite.
8. A docking device based on a C/S system, comprising:
the target interface and handle acquisition module is used for receiving the form input instruction and acquiring the handle of the target interface and the control in the C/S system of the form to be input;
the target interface positioning module is used for positioning a target interface by using a windows built-in function based on the handle;
the target interface top setting module is used for displaying the target interface top setting by using a windows built-in function;
the window assignment module is used for assigning a window of a text box in the target interface by using a sendwait method, and text contents are directly used as parameters to be transmitted to the target interface by a sender when the value is assigned; presetting a corresponding storage position and a sending sequence of the text content at a sender side based on the corresponding relation between the text content and the position of a text box of a target interface;
the window switching module is used for switching to the next assignment window by using a SendWait ("{ TAB }") method;
the window assignment end judging module is used for storing all windows after window assignment is finished, traversing the windows by using a FindWindowEx method, and determining whether all window assignment is finished according to whether the windows are traversed to a message prompt box which is successfully stored;
and the form entry ending judgment module is used for simulating a mouse click event to save the target interface according to the coordinate position of the target interface saving button after all forms are assigned, determining whether the saving is successful according to the prompt information, and ending the form entry if the saving is successful.
9. A computer-readable storage medium, on which a computer program is stored, which, when being executed by a processor, carries out the steps in the C/S system based docking method according to any one of claims 1 to 7.
10. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, characterized in that the processor implements the steps in the C/S system based docking method according to any of claims 1-7 when executing the program.
CN202110070988.9A 2021-01-19 2021-01-19 C/S system-based docking method, device, medium and equipment Active CN112732818B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110070988.9A CN112732818B (en) 2021-01-19 2021-01-19 C/S system-based docking method, device, medium and equipment

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110070988.9A CN112732818B (en) 2021-01-19 2021-01-19 C/S system-based docking method, device, medium and equipment

Publications (2)

Publication Number Publication Date
CN112732818A true CN112732818A (en) 2021-04-30
CN112732818B CN112732818B (en) 2022-08-30

Family

ID=75592547

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110070988.9A Active CN112732818B (en) 2021-01-19 2021-01-19 C/S system-based docking method, device, medium and equipment

Country Status (1)

Country Link
CN (1) CN112732818B (en)

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6826756B1 (en) * 1998-06-30 2004-11-30 Symbol Technologies, Inc. Automatic transfer of data from an input device to a software application
CN101699394A (en) * 2009-10-28 2010-04-28 金蝶软件(中国)有限公司 Method and device for automatically generating user interface
CN103902271A (en) * 2012-12-27 2014-07-02 航天信息股份有限公司 Method for unified displaying of form interface in client side and browser
CN108664461A (en) * 2018-05-03 2018-10-16 北京神州泰岳软件股份有限公司 A kind of web form Auto-writing method and device

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6826756B1 (en) * 1998-06-30 2004-11-30 Symbol Technologies, Inc. Automatic transfer of data from an input device to a software application
CN101699394A (en) * 2009-10-28 2010-04-28 金蝶软件(中国)有限公司 Method and device for automatically generating user interface
CN103902271A (en) * 2012-12-27 2014-07-02 航天信息股份有限公司 Method for unified displaying of form interface in client side and browser
CN108664461A (en) * 2018-05-03 2018-10-16 北京神州泰岳软件股份有限公司 A kind of web form Auto-writing method and device

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
韩建彬: "Windows API在VBA编程中的应用研究", 《计算机时代》 *

Also Published As

Publication number Publication date
CN112732818B (en) 2022-08-30

Similar Documents

Publication Publication Date Title
CN110928772B (en) Test method and device
CN110310088B (en) Workflow configuration method and related products
US6681344B1 (en) System and method for automatically diagnosing a computer problem
CN109462590B (en) Unknown protocol reverse analysis method based on fuzzy test
US20110016451A1 (en) Method and system for generating test cases for a software application
CN112579455B (en) Automatic interface testing method and device, electronic equipment and storage medium
CN108287648A (en) Feedback management method, apparatus, electronic equipment and the computer storage media of software
CN105955838A (en) System halt reason check method and device
CN113986119A (en) Simplified data reading method and system for accelerating cloud migration speed
CN113347060B (en) Method, device and system for detecting power network fault based on process automation
CN112732818B (en) C/S system-based docking method, device, medium and equipment
CN112650765A (en) Method, device and equipment for judging station faults and storage medium
CN115484560B (en) Intelligent short message processing method and device, electronic equipment and storage medium
CN105447580A (en) Floating window based registration reservation method
CN108416023B (en) Method for simulating user operation to write back system data
CN106528178A (en) Program automatic control method and apparatus
CN112416995B (en) Data statistics method, device, computer equipment and storage medium
WO2021234019A1 (en) Database management methods and associated apparatus
CN112596481A (en) MES management system and method supporting plug-in interactive nodes
CN114531335B (en) Method, equipment and device for detecting management information base data
CN112925841B (en) Distributed JDBC implementation method, device and computer-readable storage medium
CN111585792B (en) Data port configuration method and data port configuration device
CN115017025A (en) Method, device, equipment and medium for recording task set distribution log
CN116739325A (en) Workflow configuration method and device, electronic equipment and storage medium
CN118113820A (en) Configuration method, device, program, equipment and storage medium of question-answering 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
GR01 Patent grant
GR01 Patent grant