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.
71 lines
1.3 KiB
71 lines
1.3 KiB
/***************************************************************************
|
|
*
|
|
* 功能: 实体类
|
|
* 作者: Siasun
|
|
* 日期: 2013/4/11
|
|
*
|
|
* 修改日期:
|
|
* 修改人:
|
|
* 修改内容:
|
|
*
|
|
* *************************************************************************/
|
|
namespace SiaSun.LMS.Model
|
|
{
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
/// <summary>
|
|
/// SYS_TABLE
|
|
/// </summary>
|
|
[Serializable]
|
|
[DataContract]
|
|
public class SYS_TABLE
|
|
{
|
|
public SYS_TABLE()
|
|
{
|
|
|
|
}
|
|
|
|
private int _table_id;
|
|
private string _table_name;
|
|
private int _table_next_id;
|
|
private string _column_name;
|
|
|
|
///<sumary>
|
|
/// 表编号
|
|
///</sumary>
|
|
[DataMember]
|
|
public int TABLE_ID
|
|
{
|
|
get{return _table_id;}
|
|
set{_table_id = value;}
|
|
}
|
|
///<sumary>
|
|
/// 表名
|
|
///</sumary>
|
|
[DataMember]
|
|
public string TABLE_NAME
|
|
{
|
|
get{return _table_name;}
|
|
set{_table_name = value;}
|
|
}
|
|
///<sumary>
|
|
/// 下一个编号
|
|
///</sumary>
|
|
[DataMember]
|
|
public int TABLE_NEXT_ID
|
|
{
|
|
get{return _table_next_id;}
|
|
set{_table_next_id = value;}
|
|
}
|
|
///<sumary>
|
|
///
|
|
///</sumary>
|
|
[DataMember]
|
|
public string COLUMN_NAME
|
|
{
|
|
get{return _column_name;}
|
|
set{_column_name = value;}
|
|
}
|
|
}
|
|
}
|