CN117635273A - Business order number generation method and device - Google Patents

Business order number generation method and device Download PDF

Info

Publication number
CN117635273A
CN117635273A CN202311702164.4A CN202311702164A CN117635273A CN 117635273 A CN117635273 A CN 117635273A CN 202311702164 A CN202311702164 A CN 202311702164A CN 117635273 A CN117635273 A CN 117635273A
Authority
CN
China
Prior art keywords
order number
order
generated
acquired
redis
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
CN202311702164.4A
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.)
Suzhou Sike Information Technology Co ltd
Original Assignee
Suzhou Sike Information 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 Suzhou Sike Information Technology Co ltd filed Critical Suzhou Sike Information Technology Co ltd
Priority to CN202311702164.4A priority Critical patent/CN117635273A/en
Publication of CN117635273A publication Critical patent/CN117635273A/en
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q30/00Commerce
    • G06Q30/06Buying, selling or leasing transactions
    • G06Q30/0601Electronic shopping [e-shopping]
    • G06Q30/0633Lists, e.g. purchase orders, compilation or processing
    • G06Q30/0635Processing of requisition or of purchase orders
    • 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/22Indexing; Data structures therefor; Storage structures
    • G06F16/2282Tablespace storage structures; Management thereof
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02PCLIMATE CHANGE MITIGATION TECHNOLOGIES IN THE PRODUCTION OR PROCESSING OF GOODS
    • Y02P90/00Enabling technologies with a potential contribution to greenhouse gas [GHG] emissions mitigation
    • Y02P90/30Computing systems specially adapted for manufacturing

Landscapes

  • Engineering & Computer Science (AREA)
  • Business, Economics & Management (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • Accounting & Taxation (AREA)
  • Finance (AREA)
  • General Physics & Mathematics (AREA)
  • Data Mining & Analysis (AREA)
  • Software Systems (AREA)
  • Databases & Information Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Development Economics (AREA)
  • Economics (AREA)
  • Marketing (AREA)
  • Strategic Management (AREA)
  • General Business, Economics & Management (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a service order number generation method and device. The service order number generation method comprises the following steps: s1, newly establishing a list number table and a list number unique table in a database; s2, acquiring an order number generation request; s3, acquiring a pre-generated order number from the cache, and if the order number is acquired, directly returning the acquired order number to the service end; s4, acquiring a redis distributed lock, and if the redis distributed lock is acquired, turning to S5; if the redis distributed lock is not acquired, entering a waiting state; s5, inserting a record into the order number table, and returning a main key ID; s6, assembling the returned main key ID and the metadata to generate an order number; s7, inserting the generated order number into the single number unique table; if the insertion is successful, writing the generated order number into a redis queue, and releasing a redis distributed lock; if the insertion fails, the order number is regenerated. The invention can utilize the atomicity of the distributed lock and the table operation, and avoid the problem of producing the same single number under the condition of high concurrency.

Description

Business order number generation method and device
Technical Field
The invention belongs to the technical field of databases, and particularly relates to a method and a device for generating a service order number.
Background
In the e-commerce property platform, the generation logic of the unique order number is not bypassed. In the early stage of platform development, under the background of low single quantity, the generation algorithm of single numbers generally does not cause the problem of generating the same single number. However, under the condition that the single number is increased at a high speed as the platform is rapidly developed, the serious problem of generating the same single number can be avoided only by optimizing and upgrading and gradually iterating the order number generation algorithm. Techniques for implementing uniqueness include algorithms based on time stamps and fixed prefixes, and also methods based on random number generation.
Order number encoding methods based on a time stamp and a fixed prefix, which use the time stamp as part of the order number and add a fixed prefix or suffix before or after the time stamp. However, due to the accuracy limitations of the time stamps and the limited nature of the fixed prefix or suffix, there is still the risk that different members and different product lines will generate the same order number. An order number encoding method based on a random number, which uses a random number as a part of an order number to increase the uniqueness of the order number. However, the generation of random numbers may have a possibility of repetition, and the uniqueness of the order number cannot be fully ensured. The prior art has the risk of generating the same order number by the same member and the same product line, and the uniqueness and the efficiency of generating the order number are also challenged under the high concurrency condition.
Disclosure of Invention
The invention aims to provide a method for uniquely encoding order numbers of a cross-service line order system, which combines a product line code by utilizing an automatic adding main key and a time stamp in combination with a hash algorithm, and generates the order numbers by using member unique codes, thereby effectively reducing the risk of different members and product lines to generate the same order numbers, and ensuring the uniqueness of the order numbers through a uniqueness constraint and retry mechanism. Thereby realizing a unified order number coding method of multiple service lines.
In order to achieve the aim of the invention, the invention adopts the following scheme:
one aspect of the present invention provides a service order number generation method, including:
step S1, newly establishing a list number table and a list number unique table in a database;
s2, acquiring an order number generation request;
step S3, responding to the order number generation request, acquiring a pre-generated order number from the cache, and if the order number is acquired, directly returning the acquired order number to the service end, and ending the flow; if the order number is not acquired, the step S4 is carried out;
s4, acquiring a redis distributed lock, and if the redis distributed lock is acquired, turning to S5; if the redis distributed lock is not acquired, entering a waiting state, namely turning to a step S3;
s5, inserting a record into the order number table, and returning a main key ID; if the insertion fails, retrying, namely repeating the step S5;
s6, splicing the main key ID returned in the step S5 with one or more metadata to generate an order number;
s7, inserting the order number generated in the step S6 into the single number unique table, and verifying whether the generated order number is unique or not by utilizing a field primary key unique mechanism; if the insertion is successful, writing the generated order number into a redis queue, and releasing a redis distributed lock; if the insertion fails, regenerating the order number, namely repeating the step S5; the redis queue is a pre-generated order number queue.
Another aspect of the present invention provides a service order number generating apparatus, the apparatus comprising:
the data table construction module is used for newly constructing a list number table and a list number unique table in the database;
the request acquisition module is used for acquiring an order number generation request;
the request response module is used for responding to the order number generation request, acquiring the pre-generated order number from the cache, and directly returning the acquired order number to the service end if the order number is acquired; if the order number is not acquired, executing a redislock acquisition module;
the redis lock acquisition module is used for acquiring the redis distributed lock, and executing the order number writing module if the redis distributed lock is acquired; if the redis distributed lock is not acquired, entering a waiting state;
the order number table writing module is used for inserting a record into the order number table and returning a main key ID; if the insertion fails, retrying;
the order number generation module is used for assembling the main key ID returned by the order number table writing module with one or more metadata to generate an order number;
the order number verification module is used for inserting the order number generated by the order number generation module into the order number unique table and verifying whether the generated order number is unique or not by utilizing a field primary key unique mechanism; if the insertion is successful, writing the generated order number into a redis queue, and releasing a redis distributed lock; if the insertion fails, regenerating an order number; the redis queue is a pre-generated order number queue.
Compared with the prior art, the invention has at least the following advantages: (1) After receiving the request of generating the unique order number by each service line, the invention acquires the redis lock, and the subsequent request is in a waiting state. Locks ensure the risk of concurrency. And extracting the encrypted member code and business line code of the data packet. And inserting a record into a table with the self-increasing main key and the creation time field with the unique constraint, returning the main key ID, and generating a retry mechanism with failure. After the main key ID is obtained, the system time, the product line, the Hash value of the member number and a section of random number are spliced into a character string, an order unique number is generated, and then the character string is inserted into a table with the order number as the unique main key, so that the uniqueness of the order number is ensured. Each time the order number pre-generates the order number of the appointed number, the later order number generation request is directly obtained from the cache. Thereby realizing the sharing of a set of single number generation logic for different service lines. (2) By utilizing the atomicity of the distributed lock and the table operation, the problem of generating the same single number under the condition of high concurrency is avoided. (3) By pre-generating a specified number of single numbers in batches, the program performance is improved. In addition, the service type, the date of the service, and the like of the order can be distinguished through the single number.
Drawings
In order to more clearly illustrate the technical solutions of the embodiments of the present invention, the drawings that are needed in the embodiments or the description of the prior art will be briefly introduced below, and it is obvious that the drawings in the following description are only some embodiments described in the present invention, and other drawings can be obtained according to these drawings without inventive effort for a person skilled in the art.
Fig. 1 is a flowchart of an order number generation method according to an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the following detailed description of the embodiments of the present invention will be given with reference to the accompanying drawings. Examples of these preferred embodiments are illustrated in the accompanying drawings. The embodiments of the invention shown in the drawings and described in accordance with the drawings are merely exemplary and the invention is not limited to these embodiments.
It should be noted here that, in order to avoid obscuring the present invention due to unnecessary details, only structures and/or processing steps closely related to the solution according to the present invention are shown in the drawings, while other details not greatly related to the present invention are omitted.
One aspect of the present invention provides a service order number generation method, including:
step S1, newly establishing a list number table and a list number unique table in a database;
s2, acquiring an order number generation request;
step S3, responding to the order number generation request, acquiring a pre-generated order number from the cache, and if the order number is acquired, directly returning the acquired order number to the service end, and ending the flow; if the order number is not acquired, the step S4 is carried out;
s4, acquiring a redis distributed lock, and if the redis distributed lock is acquired, turning to S5; if the redis distributed lock is not acquired, entering a waiting state;
s5, inserting a record into the order number table, and returning a main key ID; if the insertion fails, retrying;
s6, splicing the main key ID returned in the step S5 with one or more metadata to generate an order number;
s7, inserting the order number generated in the step S6 into the single number unique table, and verifying whether the generated order number is unique or not by utilizing a field primary key unique mechanism; if the insertion is successful, writing the generated order number into a redis queue, and releasing a redis distributed lock; if the insertion fails, regenerating an order number; the redis queue is a pre-generated order number queue.
In one embodiment, the order number table is a self-increasing primary key table, and the order number table includes an ID field and a time field, wherein the ID field is a self-increasing primary key, and the time field sets a unique constraint;
the list number unique table comprises a list number field, and the list number field is a main key.
In one embodiment, the metadata includes: multiplying the hash values of the product line number, the current time, the member ID and the GUID by the current second number to be used as a random number seed, a random number and an auto-increment main key ID;
the step S5 of assembling the returned primary key ID and one or more metadata to generate an order number specifically includes: and splicing the product line number, the current time, the member ID, the random number seed, the random number and the self-increasing primary key ID according to a certain sequence, and taking the character string generated by splicing as an order number.
In one embodiment, in the step S6, if the total length of the generated order number exceeds the first preset length, a character string with the first preset length is intercepted from the head or the end of the order number as the finally generated order number.
In one embodiment, the method further includes repeating steps S5 to S7, generating a specified number of order numbers in batch, and writing to the redis queue.
Another aspect of the present invention provides a service order number generating apparatus, the apparatus comprising:
the data table construction module is used for newly constructing a list number table and a list number unique table in the database;
the request acquisition module is used for acquiring an order number generation request;
the request response module is used for responding to the order number generation request, acquiring the pre-generated order number from the cache, and directly returning the acquired order number to the service end if the order number is acquired; if the order number is not acquired, executing a redislock acquisition module;
the redis lock acquisition module is used for acquiring the redis distributed lock, and executing the order number writing module if the redis distributed lock is acquired; if the redis distributed lock is not acquired, entering a waiting state;
the order number table writing module is used for inserting a record into the order number table and returning a main key ID; if the insertion fails, retrying;
the order number generation module is used for assembling the main key ID returned by the order number table writing module with one or more metadata to generate an order number;
the order number verification module is used for inserting the order number generated by the order number generation module into the order number unique table and verifying whether the generated order number is unique or not by utilizing a field primary key unique mechanism; if the insertion is successful, writing the generated order number into a redis queue, and releasing a redis distributed lock; if the insertion fails, regenerating an order number; the redis queue is a pre-generated order number queue.
In one embodiment, the order number table is a self-increasing primary key table, and the order number table includes an ID field and a time field, wherein the ID field is a self-increasing primary key, and the time field sets a unique constraint;
the list number unique table comprises a list number field, and the list number field is a main key.
In one embodiment, the metadata includes: multiplying the hash values of the product line number, the current time, the member ID and the GUID by the current second number to be used as a random number seed, a random number and an auto-increment main key ID;
assembling the main key ID returned by the order number table writing module with one or more metadata to generate an order number, which specifically comprises the following steps: and splicing the product line number, the current time, the member ID, the random number seed, the random number and the self-increasing primary key ID according to a certain sequence, and taking the character string generated by splicing as an order number.
In one embodiment, if the total length of the order number generated by the order number generation module exceeds the first preset length, a character string of the first preset length is intercepted from the head or the tail of the order number as the finally generated order number.
In one embodiment, the apparatus further comprises, each time an order number is acquired, pre-generating a specified number of order numbers in batch and writing to the redis queue.
Fig. 1 is a main flow chart of the technical scheme of the present invention. As shown in fig. 1, the method for generating an order unique number across service lines provided by the invention comprises the following steps:
(1) Newly built in a database are an automatic adding main key table (table 1) and a single number unique table (table 2), and the data structures of the two tables are as follows:
self-increasing primary key table: ID field, time field. The ID field is an auto-increment key, and the step size is 1. The time field is accurate to the millisecond level and sets a unique constraint.
Single number unique table: order number field. This field is set to the primary key.
(2) Firstly, the pre-generated order number is tried to be obtained from the cache, and if the pre-generated order number is obtained, the pre-generated order number is directly returned to the service end.
(3) In step (2), after no order number is obtained, the redis distributed lock is obtained. Only one request is allowed to generate an order number. The same order number is generated in case of high concurrency is prevented. And if the request of the distributed lock is not acquired, entering a waiting state.
(4) A record is inserted into table 1 and the primary key ID is returned. With the auto-increment primary key feature of the MSSQL database table, the ID column automatically increases from 1, i.e., 1, 2, 3, 4, for each record inserted. When the sql statement is written in the program, the time field is assigned with the value: dateTime. Now. ToString ("yyyy-MM-dd HH: MM: ss. Fff"). If the insertion fails, retry. The uniqueness of the time field in table one further ensures the uniqueness of the data.
(5) And (3) splicing the main key ID returned in the step (4) and other metadata. The specific rules are as follows:
product line number + current time (accurate millisecond) +membership ID + Gui hash value multiplied by current seconds is used as a random number seed, and the random number + self-increasing primary key ID is taken from 10-99.
Product line number: in the business system, codes of various product lines, such as hotel 1, air ticket 2, train ticket 3, etc., are predefined.
The current time: to the nearest millisecond, the value format is DateTime. Now. ToString ("MMddssff"), such as: 07273779.
membership ID: such as 93.
Random number: the hash value of the GUID multiplied by the number of timing cycles at the current time is used as the seed value of the random number, and then a value is randomly taken from 10 to 99. Such as: 35.
self-increasing primary key ID: the auto-increased primary key ID value of table 1. Such as: 100.
according to the above rule, the generated cases are: 2072737799335100.
if the length of the order number spliced above exceeds 25, the character string with the length of 25 is reserved by cutting from the end.
The order number fields in the service line are all provided with indexes, so that the efficiency of searching according to the order numbers is improved.
(6) Inserting the order number generated in the step (5) into the table (2), and verifying whether the generated order number is unique by using a field primary key unique mechanism. If the insertion is successful, the redis queue is written. Otherwise, regenerating the order number.
(7) Repeating the steps (4) to (6). In order to improve the efficiency of acquiring order numbers, the order numbers are pre-generated in batches each time and put into a redis queue for subsequent requests.
It should be understood that although the present disclosure describes embodiments, not every embodiment is provided with a separate technical solution, and this description is for clarity only, and those skilled in the art should consider the disclosure as a whole, and the technical solutions of the embodiments may be combined appropriately to form other embodiments that can be understood by those skilled in the art.

Claims (10)

1. A method for generating a service order number, comprising:
step S1, newly establishing a list number table and a list number unique table in a database;
s2, acquiring an order number generation request;
step S3, responding to the order number generation request, acquiring a pre-generated order number from the cache, and if the order number is acquired, directly returning the acquired order number to the service end, and ending the flow; if the order number is not acquired, the step S4 is carried out;
s4, acquiring a redis distributed lock, and if the redis distributed lock is acquired, turning to S5; if the redis distributed lock is not acquired, entering a waiting state;
s5, inserting a record into the order number table, and returning a main key ID; if the insertion fails, retrying;
s6, splicing the main key ID returned in the step S5 with one or more metadata to generate an order number;
s7, inserting the order number generated in the step S6 into the single number unique table, and verifying whether the generated order number is unique or not by utilizing a field primary key unique mechanism; if the insertion is successful, writing the generated order number into a redis queue, and releasing a redis distributed lock; if the insertion fails, regenerating an order number; the redis queue is a pre-generated order number queue.
2. The method for generating a service order number according to claim 1, wherein the order number table is an auto-increment master key table, and the order number table includes an ID field and a time field, wherein the ID field is an auto-increment master key, and the time field is provided with a unique constraint;
the list number unique table comprises a list number field, and the list number field is a main key.
3. The service order number generation method according to claim 2, wherein the metadata includes: multiplying the hash values of the product line number, the current time, the member ID and the GUID by the current second number to be used as a random number seed, a random number and an auto-increment main key ID;
the step S5 of assembling the returned primary key ID and one or more metadata to generate an order number specifically includes: and splicing the product line number, the current time, the member ID, the random number seed, the random number and the self-increasing primary key ID according to a certain sequence, and taking the character string generated by splicing as an order number.
4. The method for generating service order numbers according to claim 3, wherein in the step S6, if the total length of the generated order numbers exceeds the first preset length, a character string of the first preset length is intercepted from the head or end of the order numbers as the finally generated order numbers.
5. The method according to claim 1, further comprising repeatedly executing the steps S5 to S7, pre-generating a specified number of order numbers in batch, and writing to a redis queue.
6. A service order number generation apparatus, comprising:
the data table construction module is used for newly constructing a list number table and a list number unique table in the database;
the request acquisition module is used for acquiring an order number generation request;
the request response module is used for responding to the order number generation request, acquiring the pre-generated order number from the cache, and directly returning the acquired order number to the service end if the order number is acquired; if the order number is not acquired, executing a redislock acquisition module;
the redis lock acquisition module is used for acquiring the redis distributed lock, and executing the order number writing module if the redis distributed lock is acquired; if the redis distributed lock is not acquired, entering a waiting state;
the order number table writing module is used for inserting a record into the order number table and returning a main key ID; if the insertion fails, retrying;
the order number generation module is used for assembling the main key ID returned by the order number table writing module with one or more metadata to generate an order number;
the order number verification module is used for inserting the order number generated by the order number generation module into the order number unique table and verifying whether the generated order number is unique or not by utilizing a field primary key unique mechanism; if the insertion is successful, writing the generated order number into a redis queue, and releasing a redis distributed lock; if the insertion fails, regenerating an order number; the redis queue is a pre-generated order number queue.
7. The service order number generation device according to claim 6, wherein the order number table is an auto-increment master key table, the order number table includes an ID field and a time field, wherein the ID field is an auto-increment master key, and the time field sets a unique constraint;
the list number unique table comprises a list number field, and the list number field is a main key.
8. The service order number generating device according to claim 7, wherein the metadata includes: multiplying the hash values of the product line number, the current time, the member ID and the GUID by the current second number to be used as a random number seed, a random number and an auto-increment main key ID;
assembling the main key ID returned by the order number table writing module with one or more metadata to generate an order number, which specifically comprises the following steps: and splicing the product line number, the current time, the member ID, the random number seed, the random number and the self-increasing primary key ID according to a certain sequence, and taking the character string generated by splicing as an order number.
9. The service order number generating device according to claim 8, wherein if the total length of the order number generated by the order number generating module exceeds a first preset length, a character string of the first preset length is intercepted from the head or end of the order number as the finally generated order number.
10. The service order number generation apparatus of claim 6, further comprising, each time an order number is acquired, pre-generating a specified number of order numbers in a batch, and writing the number to a redis queue.
CN202311702164.4A 2023-12-12 2023-12-12 Business order number generation method and device Pending CN117635273A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202311702164.4A CN117635273A (en) 2023-12-12 2023-12-12 Business order number generation method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202311702164.4A CN117635273A (en) 2023-12-12 2023-12-12 Business order number generation method and device

Publications (1)

Publication Number Publication Date
CN117635273A true CN117635273A (en) 2024-03-01

Family

ID=90032051

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202311702164.4A Pending CN117635273A (en) 2023-12-12 2023-12-12 Business order number generation method and device

Country Status (1)

Country Link
CN (1) CN117635273A (en)

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108241715A (en) * 2016-12-27 2018-07-03 苏宁云商集团股份有限公司 A kind of distributed data base major key generation method and device
CN109582666A (en) * 2018-09-29 2019-04-05 阿里巴巴集团控股有限公司 Data major key generation method, device, electronic equipment and storage medium
CN110457059A (en) * 2019-06-28 2019-11-15 苏宁云计算有限公司 A kind of sequence number generation method and device based on redis
CN110874210A (en) * 2018-09-03 2020-03-10 珠海横琴盛达兆业科技投资有限公司 Method for generating self-defined self-increment type unique single number
CN111353773A (en) * 2020-02-24 2020-06-30 网银在线(北京)科技有限公司 Method and device for processing identifier, storage medium and electronic device
CN113744013A (en) * 2020-09-28 2021-12-03 北京沃东天骏信息技术有限公司 Order number generation method, device, server and storage medium

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108241715A (en) * 2016-12-27 2018-07-03 苏宁云商集团股份有限公司 A kind of distributed data base major key generation method and device
CN110874210A (en) * 2018-09-03 2020-03-10 珠海横琴盛达兆业科技投资有限公司 Method for generating self-defined self-increment type unique single number
CN109582666A (en) * 2018-09-29 2019-04-05 阿里巴巴集团控股有限公司 Data major key generation method, device, electronic equipment and storage medium
CN110457059A (en) * 2019-06-28 2019-11-15 苏宁云计算有限公司 A kind of sequence number generation method and device based on redis
CN111353773A (en) * 2020-02-24 2020-06-30 网银在线(北京)科技有限公司 Method and device for processing identifier, storage medium and electronic device
CN113744013A (en) * 2020-09-28 2021-12-03 北京沃东天骏信息技术有限公司 Order number generation method, device, server and storage medium

Similar Documents

Publication Publication Date Title
CN106326361B (en) Data query method and device based on HBase database
CN111723360B (en) Credential code processing method, device and storage medium
CN111046041B (en) Data processing method and device, storage medium and processor
CN106649360B (en) Data repeatability checking method and device
CN102999525B (en) Tables of data processing method and system
CN109857389A (en) Model data generation method, device, computer equipment and storage medium
CN108647193B (en) Unique identifier generation method and device applicable to distributed system
CN113076304A (en) Distributed version management method, device and system
CN106354732A (en) Offline data version conflict resolution method for supporting concurrent cooperation
CN108388606B (en) Method for checking base table field names in Sql sentences and computer equipment
CN113495872A (en) Transaction processing method and system in distributed database
CN101526947A (en) SQL resisting injection technology using regular expression
US20090037368A1 (en) Fast path loading of xml data
CN117635273A (en) Business order number generation method and device
JP2015197810A (en) Server device, information processing method and program
CN111125129A (en) Data processing method and device, storage medium and processor
CN115563139A (en) Transaction request processing method and device
CN111625369B (en) Method, system and electronic equipment for limiting business handling of user through single channel
CN111400279B (en) Data operation method, device and computer readable storage medium
CN106708948A (en) Method and apparatus for implementing transaction operation with primary key uniqueness
KR101895848B1 (en) Document security method
CN109241177A (en) A kind of database key generation method suitable for distributed system
CN116340436B (en) Data packet processing scheduling method and device, medium and equipment
CN111858609B (en) Block chain fuzzy query method and device
KR102394483B1 (en) Service providing server for providing an error determination service for judging whether there is an error in the electronic document and operating method thereof

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
CB02 Change of applicant information
CB02 Change of applicant information

Country or region after: China

Address after: Units 2001, 2008, 2009, Building 1, Xinneng Business Plaza, No. 99 Si'an Street, Suzhou Industrial Park, Jiangsu Province, 215000

Applicant after: Suzhou Sike Technology (Group) Co.,Ltd.

Address before: Units 2001, 2008, 2009, Building 1, Xinneng Business Plaza, No. 99 Si'an Street, Suzhou Industrial Park, Suzhou City, Jiangsu Province, 215000

Applicant before: Suzhou Sike Information Technology Co.,Ltd.

Country or region before: China

SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination