| 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
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>Grade_old__c</fullName> |  |     <externalId>false</externalId> |  |     <label>政府等级.</label> |  |     <required>false</required> |  |     <trackHistory>false</trackHistory> |  |     <trackTrending>false</trackTrending> |  |     <type>Picklist</type> |  |     <valueSet> |  |         <restricted>true</restricted> |  |         <valueSetDefinition> |  |             <sorted>false</sorted> |  |             <value> |  |                 <fullName>一级</fullName> |  |                 <default>false</default> |  |                 <label>一级</label> |  |             </value> |  |             <value> |  |                 <fullName>一级甲</fullName> |  |                 <default>false</default> |  |                 <label>一级甲</label> |  |             </value> |  |             <value> |  |                 <fullName>一级乙</fullName> |  |                 <default>false</default> |  |                 <label>一级乙</label> |  |             </value> |  |             <value> |  |                 <fullName>一级丙</fullName> |  |                 <default>false</default> |  |                 <label>一级丙</label> |  |             </value> |  |             <value> |  |                 <fullName>二级</fullName> |  |                 <default>false</default> |  |                 <label>二级</label> |  |             </value> |  |             <value> |  |                 <fullName>二级甲</fullName> |  |                 <default>false</default> |  |                 <label>二级甲</label> |  |             </value> |  |             <value> |  |                 <fullName>二级乙</fullName> |  |                 <default>false</default> |  |                 <label>二级乙</label> |  |             </value> |  |             <value> |  |                 <fullName>二级丙</fullName> |  |                 <default>false</default> |  |                 <label>二级丙</label> |  |             </value> |  |             <value> |  |                 <fullName>三级</fullName> |  |                 <default>false</default> |  |                 <label>三级</label> |  |             </value> |  |             <value> |  |                 <fullName>三级甲</fullName> |  |                 <default>false</default> |  |                 <label>三级甲</label> |  |             </value> |  |             <value> |  |                 <fullName>三级乙</fullName> |  |                 <default>false</default> |  |                 <label>三级乙</label> |  |             </value> |  |             <value> |  |                 <fullName>三级丙</fullName> |  |                 <default>false</default> |  |                 <label>三级丙</label> |  |             </value> |  |             <value> |  |                 <fullName>无等级</fullName> |  |                 <default>false</default> |  |                 <label>无等级</label> |  |             </value> |  |         </valueSetDefinition> |  |     </valueSet> |  | </CustomField> | 
 |