yangys
2024-04-01 86cdd920b68274185233383f69ddb974052b6b6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
  "groups": [
    {
      "name": "blade.xsequence.db",
      "type": "com.qianwen.core.sequence.properties.SequenceDbProperties",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceDbProperties"
    },
    {
      "name": "blade.xsequence.redis",
      "type": "com.qianwen.core.sequence.properties.SequenceRedisProperties",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties"
    },
    {
      "name": "blade.xsequence.snowflake",
      "type": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties"
    }
  ],
  "properties": [
    {
      "name": "blade.xsequence.db.biz-name",
      "type": "java.lang.String",
      "description": "业务名称",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceDbProperties",
      "defaultValue": "MasterLink"
    },
    {
      "name": "blade.xsequence.db.enabled",
      "type": "java.lang.Boolean",
      "description": "是否启用",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceDbProperties",
      "defaultValue": false
    },
    {
      "name": "blade.xsequence.db.retry-times",
      "type": "java.lang.Integer",
      "description": "重试次数",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceDbProperties",
      "defaultValue": 1
    },
    {
      "name": "blade.xsequence.db.step",
      "type": "java.lang.Integer",
      "description": "获取range步长[可选,默认:1000]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceDbProperties",
      "defaultValue": 1000
    },
    {
      "name": "blade.xsequence.db.step-start",
      "type": "java.lang.Long",
      "description": "序列号分配起始值[可选:默认:0]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceDbProperties",
      "defaultValue": 0
    },
    {
      "name": "blade.xsequence.db.table-name",
      "type": "java.lang.String",
      "description": "表名称",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceDbProperties",
      "defaultValue": "blade_sequence"
    },
    {
      "name": "blade.xsequence.redis.auth",
      "type": "java.lang.String",
      "description": "验证权限",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties"
    },
    {
      "name": "blade.xsequence.redis.biz-name",
      "type": "java.lang.String",
      "description": "业务名称",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties",
      "defaultValue": "MasterLink"
    },
    {
      "name": "blade.xsequence.redis.enabled",
      "type": "java.lang.Boolean",
      "description": "是否启用",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties",
      "defaultValue": false
    },
    {
      "name": "blade.xsequence.redis.ip",
      "type": "java.lang.String",
      "description": "IP",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties"
    },
    {
      "name": "blade.xsequence.redis.port",
      "type": "java.lang.Integer",
      "description": "PORT",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties"
    },
    {
      "name": "blade.xsequence.redis.step",
      "type": "java.lang.Integer",
      "description": "获取range步长[可选,默认:1000]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties",
      "defaultValue": 1000
    },
    {
      "name": "blade.xsequence.redis.step-start",
      "type": "java.lang.Long",
      "description": "序列号分配起始值[可选:默认:0]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceRedisProperties",
      "defaultValue": 0
    },
    {
      "name": "blade.xsequence.snowflake.biz-name",
      "type": "java.lang.String",
      "description": "业务名称",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties",
      "defaultValue": "MasterLink"
    },
    {
      "name": "blade.xsequence.snowflake.datacenter-id",
      "type": "java.lang.Long",
      "description": "数据中心ID,值的范围在[0,31]之间,一般可以设置机房的IDC[必选]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties",
      "defaultValue": 0
    },
    {
      "name": "blade.xsequence.snowflake.enabled",
      "type": "java.lang.Boolean",
      "description": "是否启用",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties",
      "defaultValue": false
    },
    {
      "name": "blade.xsequence.snowflake.step",
      "type": "java.lang.Integer",
      "description": "获取range步长[可选,默认:1000]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties",
      "defaultValue": 1000
    },
    {
      "name": "blade.xsequence.snowflake.step-start",
      "type": "java.lang.Long",
      "description": "序列号分配起始值[可选:默认:0]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties",
      "defaultValue": 0
    },
    {
      "name": "blade.xsequence.snowflake.worker-id",
      "type": "java.lang.Long",
      "description": "工作机器ID,值的范围在[0,31]之间,一般可以设置机器编号[必选]",
      "sourceType": "com.qianwen.core.sequence.properties.SequenceSnowflakeProperties",
      "defaultValue": 0
    }
  ],
  "hints": []
}