📄 aoenvironment.cs
字号:
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace ASAMODS.BaseModel
{
/// <summary>
/// (BID = 1)
/// Of this entity only one instance may occur in any data storage.
/// </summary>
public abstract class AoEnvironment:AoBase
{
#region Base Attributes
private DT_STRING meaning_of_aliases;
private DT_LONG max_test_level;
private DT_STRING base_model_version;
private DT_STRING application_model_type;
private DT_STRING application_model_version;
private DT_STRING timezone;
/// <summary>
/// DT_STRING
///LIST[0:?]
/// </summary>
public DT_STRING Meaning_of_aliases
{
get { return meaning_of_aliases; }
set { meaning_of_aliases = value; }
}
/// <summary>
/// DT_LONG
///OPTIONAL
/// shows the number of levels in the test hierarchy.
/// </summary>
public DT_LONG Max_test_level
{
get { return max_test_level; }
set { max_test_level = value; }
}
/// <summary>
/// DT_STRING
///OPTIONAL
///name of the ODS base model. This is a string consisting of
///'asam' followed by the number of the base model (for the
///current version this is 'asam29')
/// </summary>
public DT_STRING Base_model_version
{
get { return base_model_version; }
set { base_model_version = value; }
}
/// <summary>
/// DT_STRING
///OPTIONAL
///may contain many names, comma-separated
/// </summary>
public DT_STRING Application_model_type
{
get { return application_model_type; }
set { application_model_type = value; }
}
/// <summary>
/// DT_STRING
/// OPTIONAL
///any operator-supplied name
/// </summary>
public DT_STRING Application_model_version
{
get { return application_model_version; }
set { application_model_version = value; }
}
/// <summary>
/// DT_STRING
///OPTIONAL
///The timezone of the environment sets the time and date
///information given within all data of this environment into the
///global time context by specifying the time difference with
///regard to GMT. (Examples: "GMT-07:00", "GMT+05:45")
/// </summary>
public DT_STRING Timezone
{
get { return timezone; }
set { timezone = value; }
}
#endregion
#region Relations
private IList entity_mapping;
private IList tests;
private IList uuts;
private IList equipments;
private IList sequences;
/// <summary>
/// INFO_FROM
///SET[0:?] OF AoNameMap
/// </summary>
public IList Entity_mapping
{
get { return entity_mapping; }
set { entity_mapping = value; }
}
/// <summary>
/// CHILD
///SET[0:?] OF AoTest
/// </summary>
public IList Tests
{
get { return tests; }
set { tests = value; }
}
/// <summary>
/// CHILD
///SET[0:?] OF AoUnitUnderTest
/// </summary>
public IList Uuts
{
get { return uuts; }
set { uuts = value; }
}
/// <summary>
/// CHILD
///SET[0:?] OF AoTestEquipment
/// </summary>
public IList Equipments
{
get { return equipments; }
set { equipments = value; }
}
/// <summary>
/// CHILD
///SET[0:?] OF AoTestSequence
/// </summary>
public IList Sequences
{
get { return sequences; }
set { sequences = value; }
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -