Update ENUM uppercase

This commit is contained in:
Samuele Locatelli
2020-06-04 15:52:00 +02:00
parent 8bd8144294
commit d6ea0e7f9a
2 changed files with 18 additions and 18 deletions
@@ -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>
+9 -9
View File
@@ -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