📄 cfieldrelation.cs
字号:
using System;
namespace DataC
{
/// <summary>
/// Summary description for CFieldRelation.
/// </summary>
public class CFieldRelation
{
private
string _strSourceTable;
string _strTargetTable;
string _strSourceField;
string _strTargetField;
string _strSourceType;
string _strTargetType;
string _strTransType;
System.Collections.Hashtable _htValueMap = new System.Collections.Hashtable();
public CFieldRelation()
{
//
// TODO: Add constructor logic here
//
}
public string TargetField
{
get { return this._strTargetField; }
set { this._strTargetField = value; }
}
public string SourceField
{
get { return this._strSourceField; }
set { this._strSourceField = value; }
}
public System.Collections.Hashtable ValueMap
{
get { return this._htValueMap; }
}
public string SourceTable
{
get { return this._strSourceTable; }
set { this._strSourceTable = value; }
}
public string TargetTable
{
get { return this._strTargetTable; }
set { this._strTargetTable = value; }
}
public string SourceType
{
get { return this._strSourceType; }
set { this._strSourceType = value; }
}
public string TargetType
{
get { return this._strTargetType; }
set { this._strTargetType = value; }
}
public string TransType
{
get { return this._strTransType;}
set { this._strTransType = value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -