Update ENUM uppercase
This commit is contained in:
@@ -24,20 +24,20 @@
|
||||
<!-- ModBlock Type -->
|
||||
<xs:simpleType name="mblockType" final="restriction">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="Heating" />
|
||||
<xs:enumeration value="Drawing" />
|
||||
<xs:enumeration value="Movement"/>
|
||||
<xs:enumeration value="Vacuum"/>
|
||||
<xs:enumeration value="Cooling"/>
|
||||
<xs:enumeration value="Extraction"/>
|
||||
<xs:enumeration value="HEATING" />
|
||||
<xs:enumeration value="DRAWING" />
|
||||
<xs:enumeration value="MOVEMENT"/>
|
||||
<xs:enumeration value="VACUUM"/>
|
||||
<xs:enumeration value="COOLING"/>
|
||||
<xs:enumeration value="EXTRACTION"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<!-- Section Type -->
|
||||
<xs:simpleType name="mblockSection" final="restriction">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="Heating" />
|
||||
<xs:enumeration value="Forming" />
|
||||
<xs:enumeration value="Extraction"/>
|
||||
<xs:enumeration value="HEATING" />
|
||||
<xs:enumeration value="FORMING" />
|
||||
<xs:enumeration value="EXTRACTION"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
@@ -93,20 +93,20 @@ namespace Thermo.Active.Model
|
||||
public enum TACT_MBLOCK_TYPE
|
||||
{
|
||||
ND = 0,
|
||||
Heating,
|
||||
Drawing,
|
||||
Movement,
|
||||
Vacuum,
|
||||
Cooling,
|
||||
Extraction
|
||||
HEATING,
|
||||
DRAWING,
|
||||
MOVEMENT,
|
||||
VACUUM,
|
||||
COOLING,
|
||||
EXTRACTION
|
||||
}
|
||||
|
||||
public enum TACT_MBLOCK_SECTION
|
||||
{
|
||||
ND = 0,
|
||||
Heating,
|
||||
Forming,
|
||||
Extraction
|
||||
HEATING,
|
||||
FORMING,
|
||||
EXTRACTION
|
||||
}
|
||||
|
||||
public enum MAINTENANCE_UNIT_OF_MEASURE
|
||||
|
||||
Reference in New Issue
Block a user