api_errtype/
list.rs

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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
macro_rules! const_errtype {
    ($err_type_ident:ident, $err_type_method:ident, $chinese_desc:expr, $english_desc:expr, $explanation:expr) => {
        #[doc = $explanation]
        pub const $err_type_ident: api_response::error_code::ErrType =
            api_response::error_code::ErrType::$err_type_method(if cfg!(feature = "chinese_description") {
                $chinese_desc
            } else {
                $english_desc
            });
    };
}

const_errtype!(
    ET1000,
    T1000,
    "用户端错误",
    "User Error",
    "Primary macroscopic error code"
);

const_errtype!(
    ET1001,
    T1001,
    "用户设备异常",
    "User Equipment Error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET1002,
    T1002,
    "用户相机异常",
    "User Camera Error",
    "Specific case under user equipment error"
);

const_errtype!(
    ET1003,
    T1003,
    "用户麦克风异常",
    "User Microphone Error",
    "Specific case under user equipment error"
);

const_errtype!(
    ET1004,
    T1004,
    "用户听筒异常",
    "User Earpiece Error",
    "Specific case under user equipment error"
);

const_errtype!(
    ET1005,
    T1005,
    "用户扬声器异常",
    "User Speaker Error",
    "Specific case under user equipment error"
);

const_errtype!(
    ET1006,
    T1006,
    "用户GPS定位异常",
    "User GPS Error",
    "Specific case under user equipment error"
);

const_errtype!(
    ET2000,
    T2000,
    "业务服务错误",
    "Business Service Error",
    "Primary macroscopic error code"
);

const_errtype!(
    ET2001,
    T2001,
    "用户注册错误",
    "User Registration Error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2002,
    T2002,
    "用户未同意隐私协议",
    "User Did Not Agree To Privacy Policy",
    "Specific case under user registration error"
);

const_errtype!(
    ET2003,
    T2003,
    "注册国家或地区受限",
    "Registration Country or Region Restricted",
    "Specific case under user registration error"
);

const_errtype!(
    ET2004,
    T2004,
    "用户名校验失败",
    "Username Verification Failed",
    "Specific case under user registration error"
);

const_errtype!(
    ET2005,
    T2005,
    "用户名已存在",
    "Username Already Exists",
    "Specific case under user registration error"
);

const_errtype!(
    ET2006,
    T2006,
    "用户名包含敏感词",
    "Username Contains Sensitive Words",
    "Specific case under user registration error"
);

const_errtype!(
    ET2007,
    T2007,
    "用户名包含特殊字符",
    "Username Contains Special Characters",
    "Specific case under user registration error"
);

const_errtype!(
    ET2008,
    T2008,
    "密码校验失败",
    "Password Verification Failed",
    "Specific case under user registration error"
);

const_errtype!(
    ET2009,
    T2009,
    "密码长度不够",
    "Password Too Short",
    "Specific case under user registration error"
);

const_errtype!(
    ET2010,
    T2010,
    "密码强度不够",
    "Password Strength Insufficient",
    "Specific case under user registration error"
);

const_errtype!(
    ET2011,
    T2011,
    "校验码输入错误",
    "Verification Code Error",
    "Specific case under user registration error"
);

const_errtype!(
    ET2012,
    T2012,
    "短信校验码输入错误",
    "SMS Verification Code Error",
    "Specific case under verification code error"
);

const_errtype!(
    ET2013,
    T2013,
    "邮件校验码输入错误",
    "Email Verification Code Error",
    "Specific case under verification code error"
);

const_errtype!(
    ET2014,
    T2014,
    "语音校验码输入错误",
    "Voice Verification Code Error",
    "Specific case under verification code error"
);

const_errtype!(
    ET2015,
    T2015,
    "用户证件异常",
    "User Document Error",
    "Specific case under user registration error"
);

const_errtype!(
    ET2016,
    T2016,
    "用户证件类型未选择",
    "User Document Type Not Selected",
    "Specific case under user document error"
);

const_errtype!(
    ET2017,
    T2017,
    "大陆身份证编号校验非法",
    "Mainland ID Number Verification Illegal",
    "Specific case under user document error"
);

const_errtype!(
    ET2018,
    T2018,
    "护照编号校验非法",
    "Passport Number Verification Illegal",
    "Specific case under user document error"
);

const_errtype!(
    ET2019,
    T2019,
    "军官证编号校验非法",
    "Officer ID Number Verification Illegal",
    "Specific case under user document error"
);

const_errtype!(
    ET2020,
    T2020,
    "用户基本信息校验失败",
    "User Basic Information Verification Failed",
    "Specific case under user registration error"
);

const_errtype!(
    ET2021,
    T2021,
    "手机格式校验失败",
    "Phone Format Verification Failed",
    "Specific case under user basic information verification failed"
);

const_errtype!(
    ET2022,
    T2022,
    "地址格式校验失败",
    "Address Format Verification Failed",
    "Specific case under user basic information verification failed"
);

const_errtype!(
    ET2023,
    T2023,
    "邮箱格式校验失败",
    "Email Format Verification Failed",
    "Specific case under user basic information verification failed"
);

const_errtype!(
    ET2024,
    T2024,
    "用户登录异常",
    "User Login Error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2025,
    T2025,
    "用户账户不存在",
    "User Account Does Not Exist",
    "Specific case under user login error"
);

const_errtype!(
    ET2026,
    T2026,
    "用户账户被冻结",
    "User Account Frozen",
    "Specific case under user login error"
);

const_errtype!(
    ET2027,
    T2027,
    "用户账户已作废",
    "User Account Invalidated",
    "Specific case under user login error"
);

const_errtype!(
    ET2028,
    T2028,
    "用户密码错误",
    "User Password Error",
    "Specific case under user login error"
);

const_errtype!(
    ET2029,
    T2029,
    "用户输入密码错误次数超限",
    "User Exceeded Password Error Limit",
    "Specific case under user password error"
);

const_errtype!(
    ET2030,
    T2030,
    "用户身份校验失败",
    "User Identity Verification Failed",
    "Specific case under user login error"
);

const_errtype!(
    ET2031,
    T2031,
    "用户指纹识别失败",
    "User Fingerprint Verification Failed",
    "Specific case under user identity verification failed"
);

const_errtype!(
    ET2032,
    T2032,
    "用户面容识别失败",
    "User Face Recognition Failed",
    "Specific case under user identity verification failed"
);

const_errtype!(
    ET2033,
    T2033,
    "用户未获得第三方登录授权",
    "User Did Not Obtain Third-Party Login Authorization",
    "Specific case under user identity verification failed"
);

const_errtype!(
    ET2034,
    T2034,
    "用户登录已过期",
    "User Login Expired",
    "Specific case under user login error"
);

const_errtype!(
    ET2035,
    T2035,
    "用户验证码错误",
    "User Verification Code Error",
    "Specific case under user login error"
);

const_errtype!(
    ET2036,
    T2036,
    "用户验证码尝试次数超限",
    "User Exceeded Verification Code Attempt Limit",
    "Specific case under user verification code error"
);

const_errtype!(
    ET2037,
    T2037,
    "访问权限异常",
    "Access Authorization Error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2038,
    T2038,
    "访问未授权",
    "Access Unauthorized",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2039,
    T2039,
    "正在授权中",
    "Authorization In Progress",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2040,
    T2040,
    "用户授权申请被拒绝",
    "User Authorization Application Rejected",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2041,
    T2041,
    "因访问对象隐私设置被拦截",
    "Access Blocked Due To Privacy Settings",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2042,
    T2042,
    "授权已过期",
    "Authorization Expired",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2043,
    T2043,
    "无权限使用API",
    "No Permission To Use API",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2044,
    T2044,
    "用户访问被拦截",
    "User Access Blocked",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2045,
    T2045,
    "黑名单用户",
    "Blacklisted User",
    "Specific case under user access blocked"
);

const_errtype!(
    ET2046,
    T2046,
    "账号被冻结",
    "Account Frozen",
    "Specific case under user access blocked"
);

const_errtype!(
    ET2047,
    T2047,
    "非法IP地址",
    "Illegal IP Address",
    "Specific case under user access blocked"
);

const_errtype!(
    ET2048,
    T2048,
    "网关访问受限",
    "Gateway Access Restricted",
    "Specific case under user access blocked"
);

const_errtype!(
    ET2049,
    T2049,
    "地域黑名单",
    "Regional Blacklist",
    "Specific case under user access blocked"
);

const_errtype!(
    ET2050,
    T2050,
    "服务已欠费",
    "Service Overdue",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2051,
    T2051,
    "用户签名异常",
    "User Signature Error",
    "Specific case under access authorization error"
);

const_errtype!(
    ET2052,
    T2052,
    "RSA签名错误",
    "RSA Signature Error",
    "Specific case under user signature error"
);

const_errtype!(
    ET2053,
    T2053,
    "用户请求参数错误",
    "User Request Parameter Error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2054,
    T2054,
    "包含非法恶意跳转链接",
    "Contains Illegal Malicious Redirect Link",
    "Specific case under user request parameter error"
);

const_errtype!(
    ET2055,
    T2055,
    "无效的用户输入",
    "Invalid User Input",
    "Specific case under user request parameter error"
);

const_errtype!(
    ET2056,
    T2056,
    "请求必填参数为空",
    "Request Required Parameter Is Empty",
    "Specific case under user request parameter error"
);

const_errtype!(
    ET2057,
    T2057,
    "用户订单号为空",
    "User Order Number Is Empty",
    "Specific case under request required parameter is empty"
);

const_errtype!(
    ET2058,
    T2058,
    "订购数量为空",
    "Order Quantity Is Empty",
    "Specific case under request required parameter is empty"
);

const_errtype!(
    ET2059,
    T2059,
    "缺少时间戳参数",
    "Missing Timestamp Parameter",
    "Specific case under request required parameter is empty"
);

const_errtype!(
    ET2060,
    T2060,
    "非法的时间戳参数",
    "Illegal Timestamp Parameter",
    "Specific case under request required parameter is empty"
);

const_errtype!(
    ET2061,
    T2061,
    "请求参数值超出允许的范围",
    "Request Parameter Value Exceeds Allowed Range",
    "Specific case under user request parameter error"
);

const_errtype!(
    ET2062,
    T2062,
    "参数格式不匹配",
    "Parameter Format Mismatch",
    "Specific case under request parameter value exceeds allowed range"
);

const_errtype!(
    ET2063,
    T2063,
    "地址不在服务范围",
    "Address Out Of Service Range",
    "Specific case under request parameter value exceeds allowed range"
);

const_errtype!(
    ET2064,
    T2064,
    "时间不在服务范围",
    "Time Out Of Service Range",
    "Specific case under request parameter value exceeds allowed range"
);

const_errtype!(
    ET2065,
    T2065,
    "金额超出限制",
    "Amount Exceeds Limit",
    "Specific case under request parameter value exceeds allowed range"
);

const_errtype!(
    ET2066,
    T2066,
    "数量超出限制",
    "Quantity Exceeds Limit",
    "Specific case under request parameter value exceeds allowed range"
);

const_errtype!(
    ET2067,
    T2067,
    "请求批量处理总个数超出限制",
    "Request Batch Total Exceeds Limit",
    "Specific case under request parameter value exceeds allowed range"
);

const_errtype!(
    ET2068,
    T2068,
    "请求JSON解析失败",
    "Request JSON Parsing Failed",
    "Specific case under user request parameter error"
);

const_errtype!(
    ET2069,
    T2069,
    "用户输入内容非法",
    "User Input Content Illegal",
    "Specific case under user request parameter error"
);

const_errtype!(
    ET2070,
    T2070,
    "包含违禁敏感词",
    "Contains Prohibited Sensitive Words",
    "Specific case under user input content illegal"
);

const_errtype!(
    ET2071,
    T2071,
    "图片包含违禁信息",
    "Image Contains Prohibited Information",
    "Specific case under user input content illegal"
);

const_errtype!(
    ET2072,
    T2072,
    "文件侵犯版权",
    "File Infringes Copyright",
    "Specific case under user input content illegal"
);

const_errtype!(
    ET2073,
    T2073,
    "用户操作异常",
    "User Operation Anomaly",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2074,
    T2074,
    "用户支付超时",
    "User Payment Timeout",
    "Specific case under user operation anomaly"
);

const_errtype!(
    ET2075,
    T2075,
    "确认订单超时",
    "Order Confirmation Timeout",
    "Specific case under user operation anomaly"
);

const_errtype!(
    ET2076,
    T2076,
    "订单已关闭",
    "Order Closed",
    "Specific case under user operation anomaly"
);

const_errtype!(
    ET2077,
    T2077,
    "用户请求服务异常",
    "User Request Service Anomaly",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2078,
    T2078,
    "请求次数超出限制",
    "Request Frequency Exceeded",
    "Specific case under user request service anomaly"
);

const_errtype!(
    ET2079,
    T2079,
    "请求并发数超出限制",
    "Request Concurrency Exceeded",
    "Specific case under user request service anomaly"
);

const_errtype!(
    ET2080,
    T2080,
    "用户操作请等待",
    "User Operation Please Wait",
    "Specific case under user request service anomaly"
);

const_errtype!(
    ET2081,
    T2081,
    "WebSocket连接异常",
    "WebSocket Connection Anomaly",
    "Specific case under user request service anomaly"
);

const_errtype!(
    ET2082,
    T2082,
    "WebSocket连接断开",
    "WebSocket Connection Disconnected",
    "Specific case under user request service anomaly"
);

const_errtype!(
    ET2083,
    T2083,
    "用户重复请求",
    "User Duplicate Request",
    "Specific case under user request service anomaly"
);

const_errtype!(
    ET2084,
    T2084,
    "用户资源异常",
    "User Resource Anomaly",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2085,
    T2085,
    "账户余额不足",
    "Insufficient Account Balance",
    "Specific case under user resource anomaly"
);

const_errtype!(
    ET2086,
    T2086,
    "用户磁盘空间不足",
    "User Insufficient Disk Space",
    "Specific case under user resource anomaly"
);

const_errtype!(
    ET2087,
    T2087,
    "用户内存空间不足",
    "User Insufficient Memory Space",
    "Specific case under user resource anomaly"
);

const_errtype!(
    ET2088,
    T2088,
    "用户OSS容量不足",
    "User OSS Capacity Insufficient",
    "Specific case under user resource anomaly"
);

const_errtype!(
    ET2089,
    T2089,
    "用户配额已用光",
    "User Quota Exhausted",
    "Specific case under user resource anomaly"
);

const_errtype!(
    ET2090,
    T2090,
    "用户上传文件异常",
    "User File Upload Anomaly",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2091,
    T2091,
    "用户上传文件类型不匹配",
    "User File Upload Type Mismatch",
    "Specific case under user file upload anomaly"
);

const_errtype!(
    ET2092,
    T2092,
    "用户上传文件太大",
    "User File Upload Too Large",
    "Specific case under user file upload anomaly"
);

const_errtype!(
    ET2093,
    T2093,
    "用户上传图片太大",
    "User Image Upload Too Large",
    "Specific case under user file upload anomaly"
);

const_errtype!(
    ET2094,
    T2094,
    "用户上传视频太大",
    "User Video Upload Too Large",
    "Specific case under user file upload anomaly"
);

const_errtype!(
    ET2095,
    T2095,
    "用户上传压缩文件太大",
    "User Compressed File Upload Too Large",
    "Specific case under user file upload anomaly"
);

const_errtype!(
    ET2096,
    T2096,
    "用户当前版本异常",
    "User Current Version Anomaly",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2097,
    T2097,
    "用户安装版本与系统不匹配",
    "User Installed Version Incompatible With System",
    "Specific case under user current version anomaly"
);

const_errtype!(
    ET2098,
    T2098,
    "用户安装版本过低",
    "User Installed Version Too Low",
    "Specific case under user current version anomaly"
);

const_errtype!(
    ET2099,
    T2099,
    "用户安装版本过高",
    "User Installed Version Too High",
    "Specific case under user current version anomaly"
);

const_errtype!(
    ET2100,
    T2100,
    "用户安装版本已过期",
    "User Installed Version Expired",
    "Specific case under user current version anomaly"
);

const_errtype!(
    ET2101,
    T2101,
    "用户API请求版本不匹配",
    "User API Request Version Mismatch",
    "Specific case under user current version anomaly"
);

const_errtype!(
    ET2102,
    T2102,
    "用户API请求版本过高",
    "User API Request Version Too High",
    "Specific case under user current version anomaly"
);

const_errtype!(
    ET2103,
    T2103,
    "用户API请求版本过低",
    "User API Request Version Too Low",
    "Specific case under user current version anomaly"
);

const_errtype!(
    ET2104,
    T2104,
    "用户隐私未授权",
    "User Privacy Not Authorized",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET2105,
    T2105,
    "用户隐私未签署",
    "User Privacy Not Signed",
    "Specific case under user privacy not authorized"
);

const_errtype!(
    ET2106,
    T2106,
    "用户摄像头未授权",
    "User Camera Not Authorized",
    "Specific case under user privacy not authorized"
);

const_errtype!(
    ET2107,
    T2107,
    "用户相机未授权",
    "User Camera Not Authorized",
    "Specific case under user privacy not authorized"
);

const_errtype!(
    ET2108,
    T2108,
    "用户图片库未授权",
    "User Photo Library Not Authorized",
    "Specific case under user privacy not authorized"
);

const_errtype!(
    ET2109,
    T2109,
    "用户文件未授权",
    "User Files Not Authorized",
    "Specific case under user privacy not authorized"
);

const_errtype!(
    ET2110,
    T2110,
    "用户位置信息未授权",
    "User Location Information Not Authorized",
    "Specific case under user privacy not authorized"
);

const_errtype!(
    ET2111,
    T2111,
    "用户通讯录未授权",
    "User Contact List Not Authorized",
    "Specific case under user privacy not authorized"
);

const_errtype!(
    ET3000,
    T3000,
    "系统执行出错",
    "System Execution Error",
    "Primary macroscopic error code"
);

const_errtype!(
    ET3001,
    T3001,
    "系统执行超时",
    "System Execution Timeout",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3002,
    T3002,
    "系统订单处理超时",
    "System Order Processing Timeout",
    "Specific case under system execution timeout"
);

const_errtype!(
    ET3003,
    T3003,
    "系统容灾功能被触发",
    "System Disaster Recovery Function Triggered",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3004,
    T3004,
    "系统限流",
    "System Flow Restriction",
    "Specific case under system disaster recovery function triggered"
);

const_errtype!(
    ET3005,
    T3005,
    "系统功能降级",
    "System Functionality Downgraded",
    "Specific case under system disaster recovery function triggered"
);

const_errtype!(
    ET3006,
    T3006,
    "系统资源异常",
    "System Resource Anomaly",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3007,
    T3007,
    "系统资源耗尽",
    "System Resources Exhausted",
    "Specific case under system resource anomaly"
);

const_errtype!(
    ET3008,
    T3008,
    "系统磁盘空间耗尽",
    "System Disk Space Exhausted",
    "Specific case under system resources exhausted"
);

const_errtype!(
    ET3009,
    T3009,
    "系统内存耗尽",
    "System Memory Exhausted",
    "Specific case under system resources exhausted"
);

const_errtype!(
    ET3010,
    T3010,
    "文件句柄耗尽",
    "File Handles Exhausted",
    "Specific case under system resources exhausted"
);

const_errtype!(
    ET3011,
    T3011,
    "系统连接池耗尽",
    "System Connection Pool Exhausted",
    "Specific case under system resources exhausted"
);

const_errtype!(
    ET3012,
    T3012,
    "系统线程池耗尽",
    "System Thread Pool Exhausted",
    "Specific case under system resources exhausted"
);

const_errtype!(
    ET3013,
    T3013,
    "系统资源访问异常",
    "System Resource Access Anomaly",
    "Specific case under system resource anomaly"
);

const_errtype!(
    ET3014,
    T3014,
    "系统读取磁盘文件失败",
    "System Failed To Read Disk File",
    "Specific case under system resource access anomaly"
);

const_errtype!(
    ET3015,
    T3015,
    "调用第三方服务出错",
    "Error Calling Third-Party Service",
    "Primary macroscopic error code"
);

const_errtype!(
    ET3016,
    T3016,
    "中间件服务出错",
    "Middleware Service Error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3017,
    T3017,
    "RPC服务出错",
    "RPC Service Error",
    "Specific case under middleware service error"
);

const_errtype!(
    ET3018,
    T3018,
    "RPC服务未找到",
    "RPC Service Not Found",
    "Specific case under RPC service error"
);

const_errtype!(
    ET3019,
    T3019,
    "RPC服务未注册",
    "RPC Service Not Registered",
    "Specific case under RPC service error"
);

const_errtype!(
    ET3020,
    T3020,
    "接口不存在",
    "Interface Does Not Exist",
    "Specific case under RPC service error"
);

const_errtype!(
    ET3021,
    T3021,
    "消息服务出错",
    "Message Service Error",
    "Specific case under middleware service error"
);

const_errtype!(
    ET3022,
    T3022,
    "消息投递出错",
    "Message Delivery Error",
    "Specific case under message service error"
);

const_errtype!(
    ET3023,
    T3023,
    "消息消费出错",
    "Message Consumption Error",
    "Specific case under message service error"
);

const_errtype!(
    ET3024,
    T3024,
    "消息订阅出错",
    "Message Subscription Error",
    "Specific case under message service error"
);

const_errtype!(
    ET3025,
    T3025,
    "消息分组未查到",
    "Message Group Not Found",
    "Specific case under message service error"
);

const_errtype!(
    ET3026,
    T3026,
    "缓存服务出错",
    "Cache Service Error",
    "Specific case under middleware service error"
);

const_errtype!(
    ET3027,
    T3027,
    "key长度超过限制",
    "Key Length Exceeds Limit",
    "Specific case under cache service error"
);

const_errtype!(
    ET3028,
    T3028,
    "value长度超过限制",
    "Value Length Exceeds Limit",
    "Specific case under cache service error"
);

const_errtype!(
    ET3029,
    T3029,
    "存储容量已满",
    "Storage Capacity Full",
    "Specific case under cache service error"
);

const_errtype!(
    ET3030,
    T3030,
    "不支持的数据格式",
    "Unsupported Data Format",
    "Specific case under cache service error"
);

const_errtype!(
    ET3031,
    T3031,
    "配置服务出错",
    "Configuration Service Error",
    "Specific case under middleware service error"
);

const_errtype!(
    ET3032,
    T3032,
    "网络资源服务出错",
    "Network Resource Service Error",
    "Specific case under middleware service error"
);

const_errtype!(
    ET3033,
    T3033,
    "VPN服务出错",
    "VPN Service Error",
    "Specific case under network resource service error"
);

const_errtype!(
    ET3034,
    T3034,
    "CDN服务出错",
    "CDN Service Error",
    "Specific case under network resource service error"
);

const_errtype!(
    ET3035,
    T3035,
    "域名解析服务出错",
    "Domain Name Resolution Service Error",
    "Specific case under network resource service error"
);

const_errtype!(
    ET3036,
    T3036,
    "网关服务出错",
    "Gateway Service Error",
    "Specific case under network resource service error"
);

const_errtype!(
    ET3037,
    T3037,
    "第三方系统执行超时",
    "Third-Party System Execution Timeout",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3038,
    T3038,
    "RPC执行超时",
    "RPC Execution Timeout",
    "Specific case under third-party system execution timeout"
);

const_errtype!(
    ET3039,
    T3039,
    "消息投递超时",
    "Message Delivery Timeout",
    "Specific case under third-party system execution timeout"
);

const_errtype!(
    ET3040,
    T3040,
    "缓存服务超时",
    "Cache Service Timeout",
    "Specific case under third-party system execution timeout"
);

const_errtype!(
    ET3041,
    T3041,
    "配置服务超时",
    "Configuration Service Timeout",
    "Specific case under third-party system execution timeout"
);

const_errtype!(
    ET3042,
    T3042,
    "数据库服务超时",
    "Database Service Timeout",
    "Specific case under third-party system execution timeout"
);

const_errtype!(
    ET3043,
    T3043,
    "数据库服务出错",
    "Database Service Error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3044,
    T3044,
    "表不存在",
    "Table Does Not Exist",
    "Specific case under database service error"
);

const_errtype!(
    ET3045,
    T3045,
    "列不存在",
    "Column Does Not Exist",
    "Specific case under database service error"
);

const_errtype!(
    ET3046,
    T3046,
    "多表关联中存在多个相同名称的列",
    "Multiple Identical Column Names In Multi-Table Association",
    "Specific case under database service error"
);

const_errtype!(
    ET3047,
    T3047,
    "数据库死锁",
    "Database Deadlock",
    "Specific case under database service error"
);

const_errtype!(
    ET3048,
    T3048,
    "主键冲突",
    "Primary Key Conflict",
    "Specific case under database service error"
);

const_errtype!(
    ET3049,
    T3049,
    "第三方容灾系统被触发",
    "Third-Party Disaster Recovery System Triggered",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3050,
    T3050,
    "第三方系统限流",
    "Third-party system flow restriction",
    "Specific case under third-party disaster recovery system triggered"
);

const_errtype!(
    ET3051,
    T3051,
    "第三方功能降级",
    "Third-party functionality downgrade",
    "Specific case under third-party disaster recovery system triggered"
);

const_errtype!(
    ET3052,
    T3052,
    "通知服务出错",
    "Notification service error",
    "Secondary macroscopic error code"
);

const_errtype!(
    ET3053,
    T3053,
    "短信提醒服务失败",
    "SMS reminder service failure",
    "Specific case under notification service error"
);

const_errtype!(
    ET3054,
    T3054,
    "语音提醒服务失败",
    "Voice reminder service failure",
    "Specific case under notification service error"
);

const_errtype!(
    ET3055,
    T3055,
    "邮件提醒服务失败",
    "Email reminder service failure",
    "Specific case under notification service error"
);