63 lines
978 B
C#
63 lines
978 B
C#
|
using System;
|
|||
|
namespace Maticsoft.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// nr_z_ypdj_scyl:实体类(属性说明自动提取数据库字段的描述信息)
|
|||
|
/// </summary>
|
|||
|
[Serializable]
|
|||
|
public partial class nr_z_ypdj_scyl
|
|||
|
{
|
|||
|
public nr_z_ypdj_scyl()
|
|||
|
{}
|
|||
|
#region Model
|
|||
|
private int _id;
|
|||
|
private int _ypdid;
|
|||
|
private string _scwlbh;
|
|||
|
private decimal _scyl;
|
|||
|
private string _beizhu;
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public int id
|
|||
|
{
|
|||
|
set{ _id=value;}
|
|||
|
get{return _id;}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public int ypdid
|
|||
|
{
|
|||
|
set{ _ypdid=value;}
|
|||
|
get{return _ypdid;}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public string scwlbh
|
|||
|
{
|
|||
|
set{ _scwlbh=value;}
|
|||
|
get{return _scwlbh;}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public decimal scyl
|
|||
|
{
|
|||
|
set{ _scyl=value;}
|
|||
|
get{return _scyl;}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public string beizhu
|
|||
|
{
|
|||
|
set{ _beizhu=value;}
|
|||
|
get{return _beizhu;}
|
|||
|
}
|
|||
|
#endregion Model
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|