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
  | <?xml version="1.0" encoding="UTF-8"?> 
 |  <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> 
 |      <fullName>Division__c</fullName> 
 |      <externalId>false</externalId> 
 |      <label>区分</label> 
 |      <required>false</required> 
 |      <trackHistory>false</trackHistory> 
 |      <trackTrending>false</trackTrending> 
 |      <type>Picklist</type> 
 |      <valueSet> 
 |          <valueSetDefinition> 
 |              <sorted>false</sorted> 
 |              <value> 
 |                  <fullName>GI</fullName> 
 |                  <default>false</default> 
 |                  <label>GI</label> 
 |              </value> 
 |              <value> 
 |                  <fullName>BF</fullName> 
 |                  <default>false</default> 
 |                  <label>BF</label> 
 |              </value> 
 |              <value> 
 |                  <fullName>GS</fullName> 
 |                  <default>false</default> 
 |                  <label>GS</label> 
 |              </value> 
 |              <value> 
 |                  <fullName>URO</fullName> 
 |                  <default>false</default> 
 |                  <label>URO</label> 
 |              </value> 
 |              <value> 
 |                  <fullName>GYN</fullName> 
 |                  <default>false</default> 
 |                  <label>GYN</label> 
 |              </value> 
 |              <value> 
 |                  <fullName>ENT</fullName> 
 |                  <default>false</default> 
 |                  <label>ENT</label> 
 |              </value> 
 |              <value> 
 |                  <fullName>OTH</fullName> 
 |                  <default>false</default> 
 |                  <label>OTH</label> 
 |              </value> 
 |              <value> 
 |                  <fullName>ET</fullName> 
 |                  <default>false</default> 
 |                  <label>ET</label> 
 |              </value> 
 |          </valueSetDefinition> 
 |      </valueSet> 
 |  </CustomField> 
 |  
  |