cfieldrelation.cs

来自「可将ACCESS数据库导入到Oracle数据库」· CS 代码 · 共 75 行

CS
75
字号
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 + =
减小字号Ctrl + -
显示快捷键?