63 lines
1018 B
C#
63 lines
1018 B
C#
using System;
|
|
namespace Maticsoft.Model
|
|
{
|
|
/// <summary>
|
|
/// nr_z_lianxiren_gys:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class nr_z_lianxiren_gys
|
|
{
|
|
public nr_z_lianxiren_gys()
|
|
{}
|
|
#region Model
|
|
private int _id;
|
|
private string _gys_bh;
|
|
private string _lxr_name;
|
|
private string _zhiwei;
|
|
private string _dianhua;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string gys_bh
|
|
{
|
|
set{ _gys_bh=value;}
|
|
get{return _gys_bh;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string lxr_name
|
|
{
|
|
set{ _lxr_name=value;}
|
|
get{return _lxr_name;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string zhiwei
|
|
{
|
|
set{ _zhiwei=value;}
|
|
get{return _zhiwei;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string dianhua
|
|
{
|
|
set{ _dianhua=value;}
|
|
get{return _dianhua;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|