CN115225712A - Interface arrangement method and terminal - Google Patents

Interface arrangement method and terminal Download PDF

Info

Publication number
CN115225712A
CN115225712A CN202210774303.3A CN202210774303A CN115225712A CN 115225712 A CN115225712 A CN 115225712A CN 202210774303 A CN202210774303 A CN 202210774303A CN 115225712 A CN115225712 A CN 115225712A
Authority
CN
China
Prior art keywords
interface
aggregation
external
aggregation interface
historical
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
CN202210774303.3A
Other languages
Chinese (zh)
Other versions
CN115225712B (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.)
Fujian Tianquan Educational Technology Ltd
Original Assignee
Fujian Tianquan Educational Technology 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 Fujian Tianquan Educational Technology Ltd filed Critical Fujian Tianquan Educational Technology Ltd
Priority to CN202210774303.3A priority Critical patent/CN115225712B/en
Publication of CN115225712A publication Critical patent/CN115225712A/en
Application granted granted Critical
Publication of CN115225712B publication Critical patent/CN115225712B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Abstract

The invention discloses an interface arranging method and a terminal.A current aggregation interface is a historical aggregation interface, and the external interface called by the historical aggregation interface and the dependency relationship thereof are analyzed, so that the external interfaces are grouped according to the external interfaces and the dependency relationship thereof, and a first aggregation interface is established according to the grouping; and establishing a mapping relation between the first aggregation interface and the historical aggregation interface, namely, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data. Therefore, the calling logic of the existing historical aggregation interface is adjusted by newly establishing the first aggregation interface, grouping arrangement can be dynamically carried out on the historical aggregation interface, and the first aggregation interface adopts a grouping concurrent mode to request, so that the response time of the aggregation interface can be shortened, and the throughput of the interface is improved.

Description

Interface arrangement method and terminal
Technical Field
The present invention relates to the field of data processing technologies, and in particular, to an interface arrangement method and a terminal.
Background
With the increase of internet users, higher requirements are put on large internet projects. In the current internet project, in order to meet the requirement of high throughput and high concurrency, a server project is generally deployed by an application in a micro-service architecture manner, and in order to reduce the access cost of a client, a gateway project is generally provided at an entrance of a micro-service in a unified manner, and the gateway project provides operations such as interface authentication, authority control, interface data aggregation and the like.
In the current gateway project, in order to implement interface data aggregation, the call sequence and logic of each external interface are usually written dead in the interface code, because the call of each external interface may depend on the return data of the front interface, and in order to reduce the code development difficulty, a synchronous call mode, that is, a code logic is written dead, and a synchronous call mode is usually adopted to implement data aggregation operation of the gateway interface. In this way, flexible change of the aggregation interface cannot be realized, new aggregation interface codes need to be developed every time, and the response time of the aggregation interface is further increased by a synchronous calling mode, so that the interface throughput is affected.
Disclosure of Invention
The technical problem to be solved by the invention is as follows: the interface arrangement method and the terminal can dynamically adjust the call logic of the aggregation interface and reduce the response time.
In order to solve the technical problems, the invention adopts the technical scheme that:
an interface orchestration method comprising the steps of:
judging whether a current aggregation interface is a historical aggregation interface, if so, analyzing an external interface called by the historical aggregation interface and a dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping;
and establishing a mapping relation between a first aggregation interface and a history aggregation interface, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data.
In order to solve the technical problem, the invention adopts another technical scheme as follows:
an interface orchestration terminal comprising a memory, a processor, and a computer program stored on the memory and executable on the processor, the processor implementing the computer program when executing the computer program:
judging whether the current aggregation interface is a historical aggregation interface or not, if so, analyzing an external interface called by the historical aggregation interface and a dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping;
and establishing a mapping relation between a first aggregation interface and a historical aggregation interface, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data.
The invention has the beneficial effects that: if the current aggregation interface is the historical aggregation interface, analyzing an external interface called by the historical aggregation interface and the dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping; and establishing a mapping relation between the first aggregation interface and the historical aggregation interface, namely, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data. Therefore, the calling logic of the existing historical aggregation interface is adjusted by newly establishing the first aggregation interface, grouping arrangement can be dynamically carried out on the historical aggregation interface, and the first aggregation interface adopts a grouping concurrent mode to request, so that the response time of the aggregation interface can be shortened, and the throughput of the interface is improved.
Drawings
FIG. 1 is a flowchart of an interface layout method according to an embodiment of the present invention;
FIG. 2 is a diagram of an interface orchestration terminal according to an embodiment of the present invention;
description of reference numerals:
1. an interface arrangement terminal; 2. a memory; 3. a processor.
Detailed Description
In order to explain technical contents, achieved objects, and effects of the present invention in detail, the following description is made with reference to the accompanying drawings in combination with the embodiments.
Referring to fig. 1, an embodiment of the present invention provides an interface arrangement method, including:
judging whether a current aggregation interface is a historical aggregation interface, if so, analyzing an external interface called by the historical aggregation interface and a dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping;
and establishing a mapping relation between a first aggregation interface and a historical aggregation interface, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data.
From the above description, the beneficial effects of the present invention are: if the current aggregation interface is the historical aggregation interface, analyzing an external interface called by the historical aggregation interface and the dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping; and establishing a mapping relation between the first aggregation interface and the historical aggregation interface, namely, simultaneously requesting data of each group through the first aggregation interface, and aggregating and returning request result data. Therefore, the calling logic of the existing historical aggregation interface is adjusted by newly establishing the first aggregation interface, grouping arrangement can be dynamically carried out on the historical aggregation interface, and the first aggregation interface adopts a grouping concurrent mode to request, so that the response time of the aggregation interface can be shortened, and the throughput of the interface is improved.
Further, analyzing the external interfaces and their dependencies invoked by the history aggregation interface includes:
and analyzing the external interface and the interface calling logic called by the historical aggregation interface by using a calling chain, and obtaining the dependency relationship of the external interface according to the interface calling logic.
As can be seen from the above description, for the historical aggregation interface, the external interface and the interface call logic thereof are obtained by analyzing the call chain, so as to quickly confirm the dependency relationship of the external interface, and facilitate the subsequent grouping of the external interfaces.
Further, the method also comprises the following steps:
and if the current aggregation interface is not the historical aggregation interface, grouping the external interfaces according to the calling sequence and the dependency relation of the required external interfaces, requesting the data of each group, and aggregating and returning the request result data.
As can be seen from the above description, for a newly added aggregation interface, grouping and arranging are performed on an external interface list to be called in the aggregation interface, data acquisition is concurrently performed between different groups, and final result data is acquired to perform aggregation processing and return, so that a calling logic in the aggregation interface is dynamically adjusted.
Further, before grouping the external interfaces according to the required calling order and dependency relationship of the external interfaces, the method includes:
and recording input parameters and return parameters of the required external interface, and obtaining the calling sequence and the dependency relationship of the required external interface according to the recorded content.
As can be seen from the above description, the interface that may be called externally is preprocessed, and the input parameter and the return parameter of the external interface are recorded, so that the calling order and the dependency relationship of the external interface are obtained.
Further, the concurrently requesting data of each packet further includes:
and performing serial request on the interfaces in each group according to the dependency sequence.
As can be seen from the above description, the interfaces in each group perform serial synchronization requests in sequence, which can further improve the response efficiency of the aggregation interface.
Referring to fig. 2, another embodiment of the present invention provides an interface orchestration terminal, including a memory, a processor, and a computer program stored in the memory and executable on the processor, where the processor executes the computer program to implement the following steps:
judging whether the current aggregation interface is a historical aggregation interface or not, if so, analyzing an external interface called by the historical aggregation interface and a dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping;
and establishing a mapping relation between a first aggregation interface and a history aggregation interface, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data.
As can be seen from the above description, if the current aggregation interface is the history aggregation interface, the external interfaces called by the history aggregation interface and the dependency relationship thereof are analyzed, so that the external interfaces are grouped according to the external interfaces and the dependency relationship thereof, and a first aggregation interface is established according to the grouping; and establishing a mapping relation between the first aggregation interface and the historical aggregation interface, namely, simultaneously requesting data of each group through the first aggregation interface, and aggregating and returning request result data. Therefore, the calling logic of the existing historical aggregation interface is adjusted by newly establishing the first aggregation interface, grouping arrangement can be dynamically carried out on the historical aggregation interface, and the first aggregation interface adopts a grouping concurrent mode to request, so that the response time of the aggregation interface can be shortened, and the throughput of the interface is improved.
Further, analyzing the external interfaces called by the history aggregation interface and the dependency relationship thereof includes:
and analyzing the external interface and the interface calling logic called by the historical aggregation interface by using a calling chain, and obtaining the dependency relationship of the external interface according to the interface calling logic.
According to the description, the historical aggregation interface is analyzed by using the call chain to obtain the external interface and the interface call logic, so that the dependency relationship of the external interface is quickly confirmed, and the external interface is conveniently grouped in the follow-up process.
Further, the method also comprises the following steps:
and if the current aggregation interface is not the historical aggregation interface, grouping the external interfaces according to the calling sequence and the dependency relationship of the required external interfaces, concurrently requesting the data of each group, and aggregating and returning the request result data.
As can be seen from the above description, for the newly added aggregation interface, grouping and arranging are performed on an external interface list to be called in the aggregation interface, data acquisition is concurrently performed between different groups, and final result data is obtained to perform aggregation processing and return, so that a calling logic in the aggregation interface is dynamically adjusted.
Further, before grouping the external interfaces according to the required calling order and dependency relationship of the external interfaces, the method includes:
and recording input parameters and return parameters of the required external interface, and obtaining the calling sequence and the dependency relationship of the required external interface according to the recorded content.
It can be known from the above description that the interface that may be called by the outside is preprocessed, and the input parameter and the return parameter of the external interface are recorded, so that the calling order and the dependency relationship of the external interface are obtained.
Further, the concurrently requesting data of each packet further includes:
and performing serial request on the interfaces in each group according to the dependency sequence.
As can be seen from the above description, the interfaces in each packet perform serial synchronization requests in order, which can further improve the response efficiency of the aggregation interface.
The interface arrangement method and the terminal of the present invention are suitable for dynamically adjusting the call logic inside the aggregation interface in the gateway project, and reducing the response time of the aggregation interface, and are described in the following by specific embodiments:
example one
Referring to fig. 1, an interface arrangement method includes the steps of:
s1, judging whether a current aggregation interface is a historical aggregation interface, if so, executing a step S2, otherwise, executing a step S3.
The historical aggregation interface is an aggregation interface which realizes the calling sequence of the internal subsystem interfaces through hard coding.
S2, analyzing the external interfaces called by the historical aggregation interfaces and the dependency relationship thereof, grouping the external interfaces according to the external interfaces and the dependency relationship thereof, establishing a first aggregation interface according to the grouping, establishing a mapping relationship between the first aggregation interface and the historical aggregation interfaces, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data.
And analyzing the external interface and the interface calling logic called by the historical aggregation interface by using a calling chain, and obtaining the dependency relationship of the external interface according to the interface calling logic.
In this embodiment, the return data of one interface is the entry of the other interface, i.e. there is a dependency relationship between the two.
Specifically, a call chain system is required to be accessed in the gateway project, and the system is an existing general system and can be used for analyzing and recording call logic for calling other system interfaces in one interface.
In this embodiment, after the call chain system analysis, it can be obtained that the history aggregation interface has external interfaces a, B, C, D, E, and F, where the interface C depends on the interface B, the interface B depends on the interface a, the interface F depends on the interface E, and the interface E depends on the interface D.
Then the interface can be divided into 2 packets, namely packet 1[ 2[ A, B, C ], packet 2[ D, E, F ].
And automatically adding a first aggregation interface, creating a mapping relation in the database, and associating the data of the added first aggregation interface with the old historical aggregation interface.
The first aggregation interface requests the data of the group 1 and the group 2 simultaneously, wherein the interfaces in each group can perform serial synchronous requests according to the dependency sequence, finally, the result data is assembled and returned, and the data is aggregated and returned.
And if the mapping relation does not exist, the original calling logic of the historical aggregation interface is used for acquiring the data.
And S3, grouping the external interfaces according to the calling sequence and the dependency relation of the required external interfaces, requesting the data of each group, and aggregating and returning the request result data.
Before grouping the external interfaces according to the calling sequence and the dependency relationship of the required external interfaces, recording input parameters and return parameters of the required external interfaces, and obtaining the calling sequence and the dependency relationship of the required external interfaces according to the recorded contents.
Specifically, in this embodiment, it is necessary to perform processing for an interface that may be called externally: firstly, setting a unique code for each external interface for distinguishing; then, data such as input parameters and return parameters of each external interface needs to be collected and recorded.
Therefore, in this scenario, the calling order and the dependency relationship of the aggregation interface internal calling each external interface are clearly defined. Assume that there are external interfaces a, B, C, D, E, and F, where interface C depends on interface B, interface B depends on interface a, interface F depends on interface E, and interface E depends on interface D. At this time, the interface can be divided into 2 groups, i.e., group 1[ A ], B, C ], group 2[ D, E, F ]. The current aggregation interface internally calls logic to concurrently request data of packet 1, packet 2, where the interfaces within each packet can make serial synchronization requests in a dependent order. And finally, assembling returned result data, and aggregating and returning.
In some embodiments, the independent, independent call interfaces may be grouped individually and call processes concurrently.
Therefore, in the embodiment, by monitoring and analyzing the call chain data, a new aggregation interface can be dynamically generated for the historical aggregation interface, and switching between new flow and old flow is performed, so that the function is fully automatically realized; and the external interfaces are grouped according to the dependency relationship, and the request is carried out in a serial mode in the component parallel group, so that the internal calling logic of the aggregation interface can be dynamically adjusted, the external interfaces are requested concurrently, the response time of the aggregation interface can be further shortened, and the interface throughput is improved.
Example two
Referring to fig. 2, an interface orchestration terminal 1 includes a memory 2, a processor 3, and a computer program stored on the memory 2 and executable on the processor 3, where the processor 3 implements the steps of an interface orchestration method according to an embodiment when executing the computer program.
In summary, according to the interface arrangement method and the terminal provided by the present invention, if the current aggregation interface is the history aggregation interface, the external interfaces called by the history aggregation interface and the dependency relationship thereof are analyzed, so that the external interfaces are grouped according to the external interfaces and the dependency relationship thereof, and a first aggregation interface is established according to the grouping; and establishing a mapping relation between the first aggregation interface and the historical aggregation interface, namely, simultaneously requesting data of each group through the first aggregation interface, and aggregating and returning request result data. If the current aggregation interface is not the historical aggregation interface, the input and output parameters of the external interface to be called are collected, the calling sequence and the dependency relationship of the external interface are obtained, the external interface is grouped, the data of each group are requested, and the request result data are aggregated and returned. Therefore, for the historical aggregation interface, adjustment can be performed based on the interface which is subjected to hard coding, an interface is newly established for the historical aggregation interface and data mapping is performed, so that the situation with the historical aggregation interface is compatible, and for the new aggregation interface, dynamic arrangement can be performed according to the dependency relationship of the external interface. In this way, the internal call logic of the aggregation interface can be dynamically adjusted, and the external interface is requested concurrently, so that the response time of the aggregation interface can be further reduced, and the interface throughput is improved.
The above description is only an embodiment of the present invention, and is not intended to limit the scope of the present invention, and all equivalent modifications made by the present invention and the contents of the accompanying drawings, which are directly or indirectly applied to the related technical fields, are included in the scope of the present invention.

Claims (10)

1. An interface orchestration method, comprising the steps of:
judging whether the current aggregation interface is a historical aggregation interface or not, if so, analyzing an external interface called by the historical aggregation interface and a dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping;
and establishing a mapping relation between a first aggregation interface and a history aggregation interface, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data.
2. The interface orchestration method according to claim 1, wherein analyzing the external interfaces and their dependencies called by the history aggregation interface comprises:
and analyzing the external interface and the interface calling logic called by the historical aggregation interface by using a calling chain, and obtaining the dependency relationship of the external interface according to the interface calling logic.
3. The interface orchestration method according to claim 1, further comprising:
and if the current aggregation interface is not the historical aggregation interface, grouping the external interfaces according to the calling sequence and the dependency relation of the required external interfaces, requesting the data of each group, and aggregating and returning the request result data.
4. The interface orchestration method according to claim 3, wherein grouping the external interfaces according to a required external interface invocation order and dependencies comprises:
and recording input parameters and return parameters of the required external interface, and obtaining the calling sequence and the dependency relationship of the required external interface according to the recorded content.
5. An interface orchestration method according to any one of claims 1-4, wherein the concurrently requesting data of each packet further comprises:
and performing serial request on the interfaces in each group according to the dependency sequence.
6. An interface orchestration terminal comprising a memory, a processor, and a computer program stored on the memory and executable on the processor, wherein the processor when executing the computer program performs the steps of:
judging whether a current aggregation interface is a historical aggregation interface, if so, analyzing an external interface called by the historical aggregation interface and a dependency relationship thereof, grouping the external interfaces according to the external interface and the dependency relationship thereof, and establishing a first aggregation interface according to the grouping;
and establishing a mapping relation between a first aggregation interface and a historical aggregation interface, concurrently requesting data of each group through the first aggregation interface, and aggregating and returning request result data.
7. The interface orchestration terminal according to claim 6, wherein analyzing the external interfaces and their dependencies called by the history aggregation interface comprises:
and analyzing the external interface and the interface calling logic called by the historical aggregation interface by using a calling chain, and obtaining the dependency relationship of the external interface according to the interface calling logic.
8. An interface orchestration terminal according to claim 6, further comprising:
and if the current aggregation interface is not the historical aggregation interface, grouping the external interfaces according to the calling sequence and the dependency relation of the required external interfaces, requesting the data of each group, and aggregating and returning the request result data.
9. The interface orchestration terminal according to claim 8, wherein grouping external interfaces according to a required external interface invocation order and dependencies comprises before:
and recording input parameters and return parameters of the required external interface, and obtaining the calling sequence and the dependency relationship of the required external interface according to the recorded content.
10. An interface orchestration terminal according to any one of claims 6 to 9, wherein the concurrent request for data of each packet further comprises:
and performing serial requests on the interfaces in each group according to the dependency sequence.
CN202210774303.3A 2022-07-01 2022-07-01 Interface arrangement method and terminal Active CN115225712B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202210774303.3A CN115225712B (en) 2022-07-01 2022-07-01 Interface arrangement method and terminal

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202210774303.3A CN115225712B (en) 2022-07-01 2022-07-01 Interface arrangement method and terminal

Publications (2)

Publication Number Publication Date
CN115225712A true CN115225712A (en) 2022-10-21
CN115225712B CN115225712B (en) 2023-11-21

Family

ID=83609195

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202210774303.3A Active CN115225712B (en) 2022-07-01 2022-07-01 Interface arrangement method and terminal

Country Status (1)

Country Link
CN (1) CN115225712B (en)

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110046992A1 (en) * 2009-08-23 2011-02-24 Erhard Itay M System and methods for management of external dependencies associated with a project portfolio
US9860168B1 (en) * 2015-09-21 2018-01-02 Amazon Technologies, Inc. Network packet header modification for hardware-based packet processing
CN107748696A (en) * 2017-09-20 2018-03-02 上海壹账通金融科技有限公司 The method and terminal device of a kind of task scheduling
CN112243032A (en) * 2020-10-15 2021-01-19 江苏云坤信息科技有限公司 Service calling method and system based on access gateway
CN113760400A (en) * 2021-01-13 2021-12-07 北京沃东天骏信息技术有限公司 Request processing method and device
CN114153491A (en) * 2021-12-02 2022-03-08 中国电信股份有限公司 Arrangement method, device and equipment of application program interface and storage medium

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110046992A1 (en) * 2009-08-23 2011-02-24 Erhard Itay M System and methods for management of external dependencies associated with a project portfolio
US9860168B1 (en) * 2015-09-21 2018-01-02 Amazon Technologies, Inc. Network packet header modification for hardware-based packet processing
CN107748696A (en) * 2017-09-20 2018-03-02 上海壹账通金融科技有限公司 The method and terminal device of a kind of task scheduling
CN112243032A (en) * 2020-10-15 2021-01-19 江苏云坤信息科技有限公司 Service calling method and system based on access gateway
CN113760400A (en) * 2021-01-13 2021-12-07 北京沃东天骏信息技术有限公司 Request processing method and device
CN114153491A (en) * 2021-12-02 2022-03-08 中国电信股份有限公司 Arrangement method, device and equipment of application program interface and storage medium

Also Published As

Publication number Publication date
CN115225712B (en) 2023-11-21

Similar Documents

Publication Publication Date Title
US11392586B2 (en) Data protection method and device and storage medium
US20180357111A1 (en) Data center operation
US20130232230A1 (en) Method and apparatus for optimizing performance and network traffic in distributed workflow processing
WO2018035799A1 (en) Data query method, application and database servers, middleware, and system
US20120150913A1 (en) Multidimensional data-centric service protocol
CN104252501A (en) Computing equipment and method for executing database operating command
CN108959496A (en) Integration across database access method and abstract data access method based on dynamic proxy
CN101727475A (en) Method, device and system for acquiring database access process
CN111654542B (en) Proxy server, execution server, reception device, and task execution method
CN113900896B (en) Method, device, equipment and storage medium for monitoring code operation
WO2020151209A1 (en) Multi-dimensional data variable-based data interaction method and platform
CN111966383B (en) Method, system and medium for quantitatively analyzing kernel compatibility of operating system
US6829575B2 (en) Enterprise javabeans container
CN111552577B (en) Method for preventing invalid request from occurring and storage medium
CN115225712B (en) Interface arrangement method and terminal
CN115640278B (en) Method and system for intelligently optimizing database performance
CN115061678A (en) Code compiling method and client based on browser proxy service
CN112631771B (en) Parallel processing method of big data system
US6219717B1 (en) Method and apparatus for implementing object transparent invocation
CN114371884A (en) Method, device, equipment and storage medium for processing Flink calculation task
CN114924783A (en) Interface calling method, device, equipment and storage medium of application program
CN112650502A (en) Batch processing task processing method and device, computer equipment and storage medium
CN117033748B (en) Service query information acquisition method, service data query method and device
CN117234512B (en) Method, system, electronic equipment and storage medium for rapidly developing business
CN111831999B (en) Method and system for aggregating multi-station operation

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