宜昌华友原料库管理软件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

141 lines
2.8 KiB

/***************************************************************************
*
* 功能: 实体类
* 作者: Siasun
* 日期: 2013/4/11
*
* 修改日期:
* 修改人:
* 修改内容:
*
* *************************************************************************/
namespace SiaSun.LMS.Model
{
using System;
using System.Runtime.Serialization;
/// <summary>
/// SYS_TABLE_CONVERTER
/// </summary>
[Serializable]
[DataContract]
public class SYS_TABLE_CONVERTER
{
public SYS_TABLE_CONVERTER()
{
}
private int _table_converter_id;
private string _table_converter_code;
private string _table_converter_name;
private string _parent_table;
private string _parent_key;
private string _child_table;
private string _child_foreign_key;
private string _split_property_type;
private string _split_property_key;
private string _split_property_column;
private string _remark;
///<sumary>
///
///</sumary>
[DataMember]
public int TABLE_CONVERTER_ID
{
get{return _table_converter_id;}
set{_table_converter_id = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string TABLE_CONVERTER_CODE
{
get{return _table_converter_code;}
set{_table_converter_code = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string TABLE_CONVERTER_NAME
{
get{return _table_converter_name;}
set{_table_converter_name = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string PARENT_TABLE
{
get{return _parent_table;}
set{_parent_table = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string PARENT_KEY
{
get{return _parent_key;}
set{_parent_key = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string CHILD_TABLE
{
get{return _child_table;}
set{_child_table = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string CHILD_FOREIGN_KEY
{
get{return _child_foreign_key;}
set{_child_foreign_key = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string SPLIT_PROPERTY_TYPE
{
get{return _split_property_type;}
set{_split_property_type = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string SPLIT_PROPERTY_KEY
{
get{return _split_property_key;}
set{_split_property_key = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string SPLIT_PROPERTY_COLUMN
{
get{return _split_property_column;}
set{_split_property_column = value;}
}
///<sumary>
///
///</sumary>
[DataMember]
public string REMARK
{
get{return _remark;}
set{_remark = value;}
}
}
}