修改枚举值变化

Uat_Study
hang 2023-06-06 14:54:05 +08:00
parent 8a232be59f
commit 43a720e09e
1 changed files with 6 additions and 4 deletions

View File

@ -34,17 +34,19 @@
US=1, US=1,
EU=2, EU=2,
Other=3 Other=3
} }
public enum DeclarationType public enum DeclarationType
{ {
Other=-1, Other=3,
US=0, US=1,
CN=1, CN=0,
EU=2, EU=2,
JP=3 JP=4
} }
} }