36 lines
580 B
C#
36 lines
580 B
C#
using System;
|
|
namespace Maticsoft.Model
|
|
{
|
|
/// <summary>
|
|
/// nr_z_yhjs:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class nr_z_yhjs
|
|
{
|
|
public nr_z_yhjs()
|
|
{}
|
|
#region Model
|
|
private int _id;
|
|
private string _mingcheng;
|
|
/// <summary>
|
|
/// 客户编号
|
|
/// </summary>
|
|
public int id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
/// <summary>
|
|
/// 角色名称
|
|
/// </summary>
|
|
public string mingcheng
|
|
{
|
|
set{ _mingcheng=value;}
|
|
get{return _mingcheng;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|