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