using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using Core.Mes.Client.Comm.Attribute;
namespace com.steering.pss.plnsaleord.order.model
{
///
/// 数据库表PLN_SALEORD_CRF_EDIT_LOG所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:DESKTOP-4E32QV0 时间:2016-01-12
///
public class PlnSaleordCrfEditLogEntity
{
///
/// 变更记录编号
///
private string crfEditLogId = "";
///
/// 交货编码PK(备料需求号)
///
private string ordLnDlyPk = "";
///
/// 排产流水号
///
private string plnDivideId = "";
///
/// 合同来源(销售合同、备料需求、补量需求)
///
private string orderSource = "";
///
/// 合同号
///
private string orderNo = "";
///
/// 合同行号
///
private string orderSeq = "";
///
/// 交货编码
///
private string deliveryNo = "";
///
/// 补量要求编码
///
private string rNumId = "";
///
/// 原工艺文件号
///
private string craftFileNoOld = "";
///
/// 原工艺序号
///
private string craftSeqOld = "";
///
/// 原工艺文件版本号
///
private string craftNoVOld = "";
///
/// 新工艺文件号
///
private string craftFileNoNew = "";
///
/// 新工艺序号
///
private string craftSeqNew = "";
///
/// 新工艺文件版本号
///
private string craftNoVNew = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 变更记录编号
///
[Description("变更记录编号")]
[Nullable(false)]
[DataLength(30)]
public string CrfEditLogId
{
get { return crfEditLogId; }
set { crfEditLogId = value; }
}
///
/// 交货编码PK(备料需求号)
///
[Description("交货编码PK")]
[Nullable(true)]
[DataLength(40)]
public string OrdLnDlyPk
{
get { return ordLnDlyPk; }
set { ordLnDlyPk = value; }
}
///
/// 排产流水号
///
[Description("排产流水号")]
[Nullable(true)]
[DataLength(10)]
public string PlnDivideId
{
get { return plnDivideId; }
set { plnDivideId = value; }
}
///
/// 合同来源(销售合同、备料需求、补量需求)
///
[Description("合同来源")]
[Nullable(true)]
[DataLength(20)]
public string OrderSource
{
get { return orderSource; }
set { orderSource = 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 RNumId
{
get { return rNumId; }
set { rNumId = value; }
}
///
/// 原工艺文件号
///
[Description("原工艺文件号")]
[Nullable(true)]
[DataLength(400)]
public string CraftFileNoOld
{
get { return craftFileNoOld; }
set { craftFileNoOld = value; }
}
///
/// 原工艺序号
///
[Description("原工艺序号")]
[Nullable(true)]
[DataLength(5)]
public string CraftSeqOld
{
get { return craftSeqOld; }
set { craftSeqOld = value; }
}
///
/// 原工艺文件版本号
///
[Description("原工艺文件版本号")]
[Nullable(true)]
[DataLength(50)]
public string CraftNoVOld
{
get { return craftNoVOld; }
set { craftNoVOld = value; }
}
///
/// 新工艺文件号
///
[Description("新工艺文件号")]
[Nullable(true)]
[DataLength(400)]
public string CraftFileNoNew
{
get { return craftFileNoNew; }
set { craftFileNoNew = value; }
}
///
/// 新工艺序号
///
[Description("新工艺序号")]
[Nullable(true)]
[DataLength(5)]
public string CraftSeqNew
{
get { return craftSeqNew; }
set { craftSeqNew = value; }
}
///
/// 新工艺文件版本号
///
[Description("新工艺文件版本号")]
[Nullable(true)]
[DataLength(50)]
public string CraftNoVNew
{
get { return craftNoVNew; }
set { craftNoVNew = 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; }
}
}
}