using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace com.steering.pss.sale.price.entity
{
///
/// 数据库表SLM_PRICE_DOC所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:JK-KF-WUHJ 时间:2016-06-07
///
public class SlmPriceDocEntity
{
///
/// 价格文件版本号
///
private string priceVerId = "";
///
/// 价格文件描述
///
private string priceVerDesc = "";
///
/// 有效期起
///
private string validdateBegin = "";
///
/// 有效期止
///
private string validdateEnd = "";
///
/// 是否有效
///
private string validflag = "";
///
/// 创建人
///
private string createname = "";
///
/// 创建时间
///
private string createdate = "";
///
/// 修改人
///
private string updatename = "";
///
/// 修改时间
///
private string updatedate = "";
///
/// 价格文件版本号
///
[Description("价格文件版本号")]
[Nullable(true)]
[DataLength(20)]
public string PriceVerId
{
get { return priceVerId; }
set { priceVerId = value; }
}
///
/// 价格文件描述
///
[Description("价格文件描述")]
[Nullable(true)]
[DataLength(50)]
public string PriceVerDesc
{
get { return priceVerDesc; }
set { priceVerDesc = value; }
}
///
/// 有效期起
///
[Description("有效期起")]
[Nullable(true)]
public string ValiddateBegin
{
get { return validdateBegin; }
set { validdateBegin = value; }
}
///
/// 有效期止
///
[Description("有效期止")]
[Nullable(true)]
public string ValiddateEnd
{
get { return validdateEnd; }
set { validdateEnd = value; }
}
///
/// 是否有效
///
[Description("是否有效")]
[Nullable(true)]
[DataLength(2)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string Createname
{
get { return createname; }
set { createname = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string Createdate
{
get { return createdate; }
set { createdate = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string Updatename
{
get { return updatename; }
set { updatename = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string Updatedate
{
get { return updatedate; }
set { updatedate = value; }
}
}
}