Files
2026-04-17 14:55:32 -04:00

209 lines
5.8 KiB
C#

namespace DTS.Storage
{
public class MMETables
{
public const string MyType = "MyType"; //This was exported in all versions up to 1.3.496 and was replaced by "CustomChannelType"
public const string CustomChannelType = "CustomChannelType"; //This was exported in versions from 1.3.498 - 1.3.515 and was replaced by "TYPE"
public const string Id = "Id"; //This was exported in all versions up to 1.3.515 and was replaced by "ID"
public const string MMEPossibleChannelsTable = "tblMMEPossibleChannels";
public enum MMEPossibleChannelsFields
{
ID,
TYPE,
[CustomChannelFieldSize(50)]
TEST_OBJECT,
[CustomChannelFieldSize(50)]
POSITION,
[CustomChannelFieldSize(50)]
TRANS_MAIN_LOC,
[CustomChannelFieldSize(50)]
FINE_LOC_1,
[CustomChannelFieldSize(50)]
FINE_LOC_2,
[CustomChannelFieldSize(50)]
FINE_LOC_3,
[CustomChannelFieldSize(50)]
PHYSICAL_DIMENSION,
[CustomChannelFieldSize(50)]
DIRECTION,
[CustomChannelFieldSize(50)]
DEFAULT_FILTER_CLASS,
[CustomChannelFieldSize(100)]
TEXT_L1,
[CustomChannelFieldSize(100)]
TEXT_L2,
VERSION,
DATE,
[CustomChannelFieldSize(50)]
REMARKS,
EXPIRED,
[CustomChannelFieldSize(50)]
SORTKEY,
[CustomChannelFieldSize(50)]
PICTURE_SHORTNAME,
[CustomChannelFieldSize(50)]
LAST_CHANGE,
[CustomChannelFieldSize(50)]
LAST_CHANGE_TEXT,
[CustomChannelFieldSize(50)]
HISTORY
}
public const string MMEDirectionsTable = "tblMMEDirections";
public enum MMEDirectionsFields
{
s_GUID,
DIRECTION,
TEXT_L1,
TEXT_L2,
DATE,
VERSION,
EXPIRED,
REMARKS,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY,
SORTKEY
}
public const string MMEFilterClassesTable = "tblMMEFilterClasses";
public enum MMEFilterClassesFields
{
s_GUID,
FILTER_CLASS,
TEXT_L1,
TEXT_L2,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
public const string MMEFineLocations1Table = "tblMMEFineLocations1";
public enum MMEFineLocations1Fields
{
s_GUID,
FINE_LOC_1,
TEXT_L1,
TEXT_L2,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
public const string MMEFineLocations2Table = "tblMMEFineLocations2";
public enum MMEFineLocations2Fields
{
s_GUID,
FINE_LOC_2,
TEXT_L1,
TEXT_L2,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
public const string MMEFineLocations3Table = "tblMMEFineLocations3";
public enum MMEFineLocations3Fields
{
s_GUID,
FINE_LOC_3,
TEXT_L1,
TEXT_L2,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
PICTURE_SHORTNAME,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
public const string MMEPhysicalDimensions = "tblMMEPhysicalDimensions";
public enum MMEPhysicalDimensionFields
{
s_GUID,
PHYSICAL_DIMENSION,
TEXT_L1,
TEXT_L2,
DEFAULT_UNIT,
LENGTH_EXP,
TIME_EXP,
MASS_EXP,
ELECTRIC_CURRENT_EXP,
TEMPERATURE_EXP,
LUMINOUS_INTENSITY_EXP,
AMOUNT_OFSUBSTANCE_EXP,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
public const string MMEPositionsTable = "tblMMEPositions";
public enum MMEPositionsFields
{
s_GUID,
POSITION,
TEXT_L1,
TEXT_L2,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
public const string MMETestObjectsTable = "tblMMETestObjects";
public enum MMETestObjectsFields
{
s_GUID,
TEST_OBJECT,
TEXT_L1,
TEXT_L2,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
public const string MMEMainLocationTable = "tblMMEMainLocations";
public enum MMEMainLocationsFields
{
s_GUID,
TYPE,
TRANS_MAIN_LOC,
TEXT_L1,
TEXT_L2,
VERSION,
DATE,
REMARKS,
EXPIRED,
SORTKEY,
PICTURE_SHORTNAME,
LAST_CHANGE,
LAST_CHANGE_TEXT,
HISTORY
}
}
}