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_BASEPRICE_LINE所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:JK-KF-WUHJ 时间:2016-08-17
///
public class SlmPriceBasepriceLineEntity
{
///
/// 基价ID
///
private string priceLineId = "";
///
/// 基价套头ID
///
private string priceHeadId = "";
///
/// 配置框架ID
///
private string frameId = "";
///
/// 外径起
///
private decimal? waijingBegin = null;
///
/// 外径止
///
private decimal? waijingEnd = null;
///
/// 壁厚起
///
private decimal? bihouBegin = null;
///
/// 壁厚止
///
private decimal? bihouEnd = null;
///
/// 规格
///
private string specificion = "";
///
/// 计价单位
///
private string priceUnit = "";
///
/// 价格
///
private decimal? priceNum = null;
///
/// 有效标志(1:有效,0:无效)
///
private string validflag = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 基价ID
///
[Description("基价ID")]
[Nullable(false)]
[DataLength(20)]
public string PriceLineId
{
get { return priceLineId; }
set { priceLineId = value; }
}
///
/// 基价套头ID
///
[Description("基价套头ID")]
[Nullable(false)]
[DataLength(20)]
public string PriceHeadId
{
get { return priceHeadId; }
set { priceHeadId = value; }
}
///
/// 配置框架ID
///
[Description("配置框架ID")]
[Nullable(false)]
[DataLength(20)]
public string FrameId
{
get { return frameId; }
set { frameId = value; }
}
///
/// 外径起
///
[Description("外径起")]
[Nullable(true)]
[DataLength(9)]
public decimal? WaijingBegin
{
get { return waijingBegin; }
set { waijingBegin = value; }
}
///
/// 外径止
///
[Description("外径止")]
[Nullable(true)]
[DataLength(9)]
public decimal? WaijingEnd
{
get { return waijingEnd; }
set { waijingEnd = value; }
}
///
/// 壁厚起
///
[Description("壁厚起")]
[Nullable(true)]
[DataLength(9)]
public decimal? BihouBegin
{
get { return bihouBegin; }
set { bihouBegin = value; }
}
///
/// 壁厚止
///
[Description("壁厚止")]
[Nullable(true)]
[DataLength(9)]
public decimal? BihouEnd
{
get { return bihouEnd; }
set { bihouEnd = value; }
}
///
/// 规格
///
[Description("规格")]
[Nullable(true)]
[DataLength(100)]
public string Specificion
{
get { return specificion; }
set { specificion = value; }
}
///
/// 计价单位
///
[Description("计价单位")]
[Nullable(true)]
[DataLength(20)]
public string PriceUnit
{
get { return priceUnit; }
set { priceUnit = value; }
}
///
/// 价格
///
[Description("价格")]
[Nullable(true)]
[DataLength(9)]
public decimal? PriceNum
{
get { return priceNum; }
set { priceNum = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志(1:有效,0:无效)")]
[Nullable(true)]
[DataLength(1)]
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 CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
}
}