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