📄 aoattributemap.cs
字号:
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace ASAMODS.BaseModel
{
/// <summary>
/// (BID = 47)
/// </summary>
public abstract class AoAttributeMap:AoBase
{
#region Base Attributes
private DT_STRING attribute_name;
private IList alias_names;
/// <summary>
/// DT_STRING
/// MANDATORY ATTRIBUTE (required in application model)
/// Name of the application attribute
/// </summary>
public DT_STRING Attribute_name
{
get { return attribute_name; }
set { attribute_name = value; }
}
/// <summary>
/// DT_STRING
/// LIST[0:?]
/// MANDATORY ATTRIBUTE (required in application model)
/// Alternative name of the application element.
/// </summary>
public IList Alias_names
{
get { return alias_names; }
set { alias_names = value; }
}
#endregion
#region Relations
private AoNameMap name_mapping;
/// <summary>
/// FATHER
/// AoNameMap
/// INVERSE FOR attribute_mapping
/// MANDATORY ATTRIBUTE (required in application model)
/// </summary>
public AoNameMap Name_mapping
{
get { return name_mapping; }
set { name_mapping = value; }
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -