using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Core.Mes.Client.Comm.Attribute;
using System.ComponentModel;
namespace com.steering.pss.plnsaleord.order.model
{
///
/// 数据库表PLN_SALEORDER_R_NUM所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:xiaohai-PC 时间:2015-10-13
///
public class PlnSaleorderRNumEntity
{
///
/// 补量要求编码
///
private string rNumId = "";
///
/// 交货编码PK
///
private string ordLnDlyPk = "";
///
/// 合同号
///
private string orderNo = "";
///
/// 合同行号
///
private string orderSeq = "";
///
/// 交货编码
///
private string deliveryNo = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 品名描述
///
private string producname = "";
///
/// 标准代码
///
private string stdCode = "";
///
/// 标准名称
///
private string stdName = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 产品规格代码
///
private string specCode = "";
///
/// 产品规格描述
///
private string specName = "";
///
/// 扣型代码
///
private string modelCode = "";
///
/// 扣型描述
///
private string modelDesc = "";
///
/// 外径
///
private string outdiameter = "";
///
/// 壁厚
///
private string wallthick = "";
///
/// 长度描述
///
private string lengthdisc = "";
///
/// 订货计量单位
///
private string orderUnit = "";
///
/// 补量申请量
///
private string repQty = "";
///
/// 补量原因
///
private string repReason = "";
///
/// 申请人
///
private string reqName = "";
///
/// 申请时间
///
private string reqTime = "";
///
/// 排产确认人
///
private string planDealName = "";
///
/// 排产确认时间
///
private string planDealTime = "";
///
/// 估算量(吨、支)
///
private string reqweight = "";
///
/// 估算量单位
///
private string reqWeightUnit = "";
///
/// 补量确认量(估算量单位)
///
private string confirmWt = "";
///
/// 版本号
///
private string acceptNo = "";
///
/// 补量要求编码
///
[Description("补量要求编码")]
[Nullable(false)]
[DataLength(20)]
public string RNumId
{
get { return rNumId; }
set { rNumId = value; }
}
///
/// 交货编码PK
///
[Description("交货编码PK")]
[Nullable(true)]
[DataLength(40)]
public string OrdLnDlyPk
{
get { return ordLnDlyPk; }
set { ordLnDlyPk = value; }
}
///
/// 合同号
///
[Description("合同号")]
[Nullable(true)]
[DataLength(20)]
public string OrderNo
{
get { return orderNo; }
set { orderNo = value; }
}
///
/// 合同行号
///
[Description("合同行号")]
[Nullable(true)]
[DataLength(3)]
public string OrderSeq
{
get { return orderSeq; }
set { orderSeq = value; }
}
///
/// 交货编码
///
[Description("交货编码")]
[Nullable(true)]
[DataLength(3)]
public string DeliveryNo
{
get { return deliveryNo; }
set { deliveryNo = value; }
}
///
/// 品名代码
///
[Description("品名代码")]
[Nullable(true)]
[DataLength(20)]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 品名描述
///
[Description("品名描述")]
[Nullable(true)]
[DataLength(100)]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 标准代码
///
[Description("标准代码")]
[Nullable(true)]
[DataLength(20)]
public string StdCode
{
get { return stdCode; }
set { stdCode = value; }
}
///
/// 标准名称
///
[Description("标准名称")]
[Nullable(true)]
[DataLength(200)]
public string StdName
{
get { return stdName; }
set { stdName = value; }
}
///
/// 钢级(牌号)代码
///
[Description("钢级(牌号)代码")]
[Nullable(true)]
[DataLength(10)]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 钢级(牌号)名称
///
[Description("钢级(牌号)名称")]
[Nullable(true)]
[DataLength(100)]
public string Steelname
{
get { return steelname; }
set { steelname = value; }
}
///
/// 产品规格代码
///
[Description("产品规格代码")]
[Nullable(true)]
[DataLength(20)]
public string SpecCode
{
get { return specCode; }
set { specCode = value; }
}
///
/// 产品规格描述
///
[Description("产品规格描述")]
[Nullable(true)]
[DataLength(100)]
public string SpecName
{
get { return specName; }
set { specName = value; }
}
///
/// 扣型代码
///
[Description("扣型代码")]
[Nullable(true)]
[DataLength(20)]
public string ModelCode
{
get { return modelCode; }
set { modelCode = value; }
}
///
/// 扣型描述
///
[Description("扣型描述")]
[Nullable(true)]
[DataLength(100)]
public string ModelDesc
{
get { return modelDesc; }
set { modelDesc = value; }
}
///
/// 外径
///
[Description("外径")]
[Nullable(true)]
[DataLength(10)]
public string Outdiameter
{
get { return outdiameter; }
set { outdiameter = value; }
}
///
/// 壁厚
///
[Description("壁厚")]
[Nullable(true)]
[DataLength(10)]
public string Wallthick
{
get { return wallthick; }
set { wallthick = value; }
}
///
/// 长度描述
///
[Description("长度描述")]
[Nullable(true)]
[DataLength(100)]
public string Lengthdisc
{
get { return lengthdisc; }
set { lengthdisc = value; }
}
///
/// 订货计量单位
///
[Description("订货计量单位")]
[Nullable(true)]
[DataLength(20)]
public string OrderUnit
{
get { return orderUnit; }
set { orderUnit = value; }
}
///
/// 补量申请量
///
[Description("补量申请量")]
[Nullable(true)]
[DataLength(10)]
public string RepQty
{
get { return repQty; }
set { repQty = value; }
}
///
/// 补量原因
///
[Description("补量原因")]
[Nullable(true)]
[DataLength(200)]
public string RepReason
{
get { return repReason; }
set { repReason = value; }
}
///
/// 申请人
///
[Description("申请人")]
[Nullable(true)]
[DataLength(20)]
public string ReqName
{
get { return reqName; }
set { reqName = value; }
}
///
/// 申请时间
///
[Description("申请时间")]
[Nullable(true)]
public string ReqTime
{
get { return reqTime; }
set { reqTime = value; }
}
///
/// 排产确认人
///
[Description("排产确认人")]
[Nullable(true)]
[DataLength(20)]
public string PlanDealName
{
get { return planDealName; }
set { planDealName = value; }
}
///
/// 排产确认时间
///
[Description("排产确认时间")]
[Nullable(true)]
public string PlanDealTime
{
get { return planDealTime; }
set { planDealTime = value; }
}
///
/// 估算量(吨、支)
///
[Description("估算量")]
[Nullable(true)]
[DataLength(10)]
public string Reqweight
{
get { return reqweight; }
set { reqweight = value; }
}
///
/// 估算量单位
///
[Description("估算量单位")]
[Nullable(true)]
[DataLength(20)]
public string ReqWeightUnit
{
get { return reqWeightUnit; }
set { reqWeightUnit = value; }
}
///
/// 补量确认量(估算量单位)
///
[Description("补量确认量")]
[Nullable(true)]
[DataLength(10)]
public string ConfirmWt
{
get { return confirmWt; }
set { confirmWt = value; }
}
///
/// 版本号
///
[Description("版本号")]
[Nullable(true)]
[DataLength(15)]
public string AcceptNo
{
get { return acceptNo; }
set { acceptNo = value; }
}
}
}