using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.Lims.Data.PipeAndOutdec.封装类.实体类
{
///
/// 数据库表SLM_ORDER_LINE_PRDCR_LST所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:PC-20160918TFRG 时间:2021-05-22
///
public class SlmOrderLinePrdcrLstEntity
{
///
/// 监制编号(ORD_LN_PK+三位流水号)
///
private string prdcrNo = "";
///
/// 工序代码
///
private string processCode = "";
///
/// 工序名称
///
private string processDesc = "";
///
/// 二级工序代码
///
private string processCodeC = "";
///
/// 二级工序名称
///
private string processDescC = "";
///
/// 工序点代码
///
private string stationCode = "";
///
/// 工序点名称
///
private string stationDesc = "";
///
/// 工艺参数代码
///
private string craftitemCode = "";
///
/// 工艺参数名称
///
private string craftitemDesc = "";
///
/// 监制要求标识
///
private string prdcrPrcFl = "";
///
/// 监制类型(COM_BASE_INFO:1220)
///
private string prdcrPrcDesc = "";
///
/// 提前天数
///
private decimal? prdcrAdvcDay = null;
///
/// 监制单位编码(D+4位流水号)
///
private string pdeptNo = "";
///
/// 监制单位名称
///
private string pdeptName = "";
///
/// 联系电话
///
private string phone = "";
///
/// 监制单位编码2
///
private string pdeptNo2 = "";
///
/// 监制单位名称2
///
private string pdeptName2 = "";
///
/// 联系电话2
///
private string phone2 = "";
///
/// 监制单位编码3
///
private string pdeptNo3 = "";
///
/// 监制单位名称3
///
private string pdeptName3 = "";
///
/// 联系电话3
///
private string phone3 = "";
///
/// 到场监制人员
///
private string prdcrMan = "";
///
/// 到场监制人电话
///
private string prdcrManPhone = "";
///
/// 到场时间
///
private string arriveTime = "";
///
/// 完成时间
///
private string finishTime = "";
///
/// 到场监制人员2
///
private string prdcrMan2 = "";
///
/// 到场监制人电话2
///
private string prdcrManPhone2 = "";
///
/// 到场时间2
///
private string arriveTime2 = "";
///
/// 完成时间2
///
private string finishTime2 = "";
///
/// 到场监制人员3
///
private string prdcrMan3 = "";
///
/// 到场监制人电话3
///
private string prdcrManPhone3 = "";
///
/// 到场时间3
///
private string arriveTime3 = "";
///
/// 完成时间3
///
private string finishTime3 = "";
///
/// 备注
///
private string memo = "";
///
/// 监制编号序号
///
private decimal? prdcrIndex = null;
///
/// 是否已通知监制(0,未通知 1已通知)
///
private string isNotice = "";
///
/// 通知监制时间
///
private string noticeTime = "";
///
/// 监制编号(ORD_LN_PK+三位流水号)
///
[Description("监制编号")]
[Nullable(false)]
[DataLength(40)]
public string PrdcrNo
{
get { return prdcrNo; }
set { prdcrNo = value; }
}
///
/// 工序代码
///
[Description("工序代码")]
[Nullable(false)]
[DataLength(8)]
public string ProcessCode
{
get { return processCode; }
set { processCode = value; }
}
///
/// 工序名称
///
[Description("工序名称")]
[Nullable(false)]
[DataLength(50)]
public string ProcessDesc
{
get { return processDesc; }
set { processDesc = value; }
}
///
/// 二级工序代码
///
[Description("二级工序代码")]
[Nullable(true)]
[DataLength(8)]
public string ProcessCodeC
{
get { return processCodeC; }
set { processCodeC = value; }
}
///
/// 二级工序名称
///
[Description("二级工序名称")]
[Nullable(true)]
[DataLength(50)]
public string ProcessDescC
{
get { return processDescC; }
set { processDescC = value; }
}
///
/// 工序点代码
///
[Description("工序点代码")]
[Nullable(false)]
[DataLength(10)]
public string StationCode
{
get { return stationCode; }
set { stationCode = value; }
}
///
/// 工序点名称
///
[Description("工序点名称")]
[Nullable(true)]
[DataLength(50)]
public string StationDesc
{
get { return stationDesc; }
set { stationDesc = value; }
}
///
/// 工艺参数代码
///
[Description("工艺参数代码")]
[Nullable(true)]
[DataLength(10)]
public string CraftitemCode
{
get { return craftitemCode; }
set { craftitemCode = value; }
}
///
/// 工艺参数名称
///
[Description("工艺参数名称")]
[Nullable(true)]
[DataLength(50)]
public string CraftitemDesc
{
get { return craftitemDesc; }
set { craftitemDesc = value; }
}
///
/// 监制要求标识
///
[Description("监制要求标识")]
[Nullable(true)]
[DataLength(1)]
public string PrdcrPrcFl
{
get { return prdcrPrcFl; }
set { prdcrPrcFl = value; }
}
///
/// 监制类型(COM_BASE_INFO:1220)
///
[Description("监制类型(COM_BASE_INFO:1220)")]
[Nullable(true)]
[DataLength(20)]
public string PrdcrPrcDesc
{
get { return prdcrPrcDesc; }
set { prdcrPrcDesc = value; }
}
///
/// 提前天数
///
[Description("提前天数")]
[Nullable(true)]
[DataLength(22)]
public decimal? PrdcrAdvcDay
{
get { return prdcrAdvcDay; }
set { prdcrAdvcDay = value; }
}
///
/// 监制单位编码(D+4位流水号)
///
[Description("监制单位编码(D+4位流水号)")]
[Nullable(true)]
[DataLength(20)]
public string PdeptNo
{
get { return pdeptNo; }
set { pdeptNo = value; }
}
///
/// 监制单位名称
///
[Description("监制单位名称")]
[Nullable(true)]
[DataLength(50)]
public string PdeptName
{
get { return pdeptName; }
set { pdeptName = value; }
}
///
/// 联系电话
///
[Description("联系电话")]
[Nullable(true)]
[DataLength(30)]
public string Phone
{
get { return phone; }
set { phone = value; }
}
///
/// 监制单位编码2
///
[Description("监制单位编码2")]
[Nullable(true)]
[DataLength(20)]
public string PdeptNo2
{
get { return pdeptNo2; }
set { pdeptNo2 = value; }
}
///
/// 监制单位名称2
///
[Description("监制单位名称2")]
[Nullable(true)]
[DataLength(50)]
public string PdeptName2
{
get { return pdeptName2; }
set { pdeptName2 = value; }
}
///
/// 联系电话2
///
[Description("联系电话2")]
[Nullable(true)]
[DataLength(30)]
public string Phone2
{
get { return phone2; }
set { phone2 = value; }
}
///
/// 监制单位编码3
///
[Description("监制单位编码3")]
[Nullable(true)]
[DataLength(20)]
public string PdeptNo3
{
get { return pdeptNo3; }
set { pdeptNo3 = value; }
}
///
/// 监制单位名称3
///
[Description("监制单位名称3")]
[Nullable(true)]
[DataLength(50)]
public string PdeptName3
{
get { return pdeptName3; }
set { pdeptName3 = value; }
}
///
/// 联系电话3
///
[Description("联系电话3")]
[Nullable(true)]
[DataLength(30)]
public string Phone3
{
get { return phone3; }
set { phone3 = value; }
}
///
/// 到场监制人员
///
[Description("到场监制人员")]
[Nullable(true)]
[DataLength(20)]
public string PrdcrMan
{
get { return prdcrMan; }
set { prdcrMan = value; }
}
///
/// 到场监制人电话
///
[Description("到场监制人电话")]
[Nullable(true)]
[DataLength(20)]
public string PrdcrManPhone
{
get { return prdcrManPhone; }
set { prdcrManPhone = value; }
}
///
/// 到场时间
///
[Description("到场时间")]
[Nullable(true)]
public string ArriveTime
{
get { return arriveTime; }
set { arriveTime = value; }
}
///
/// 完成时间
///
[Description("完成时间")]
[Nullable(true)]
public string FinishTime
{
get { return finishTime; }
set { finishTime = value; }
}
///
/// 到场监制人员2
///
[Description("到场监制人员2")]
[Nullable(true)]
[DataLength(20)]
public string PrdcrMan2
{
get { return prdcrMan2; }
set { prdcrMan2 = value; }
}
///
/// 到场监制人电话2
///
[Description("到场监制人电话2")]
[Nullable(true)]
[DataLength(20)]
public string PrdcrManPhone2
{
get { return prdcrManPhone2; }
set { prdcrManPhone2 = value; }
}
///
/// 到场时间2
///
[Description("到场时间2")]
[Nullable(true)]
public string ArriveTime2
{
get { return arriveTime2; }
set { arriveTime2 = value; }
}
///
/// 完成时间2
///
[Description("完成时间2")]
[Nullable(true)]
public string FinishTime2
{
get { return finishTime2; }
set { finishTime2 = value; }
}
///
/// 到场监制人员3
///
[Description("到场监制人员3")]
[Nullable(true)]
[DataLength(20)]
public string PrdcrMan3
{
get { return prdcrMan3; }
set { prdcrMan3 = value; }
}
///
/// 到场监制人电话3
///
[Description("到场监制人电话3")]
[Nullable(true)]
[DataLength(20)]
public string PrdcrManPhone3
{
get { return prdcrManPhone3; }
set { prdcrManPhone3 = value; }
}
///
/// 到场时间3
///
[Description("到场时间3")]
[Nullable(true)]
public string ArriveTime3
{
get { return arriveTime3; }
set { arriveTime3 = value; }
}
///
/// 完成时间3
///
[Description("完成时间3")]
[Nullable(true)]
public string FinishTime3
{
get { return finishTime3; }
set { finishTime3 = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(200)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 监制编号序号
///
[Description("监制编号序号")]
[Nullable(false)]
[DataLength(22)]
public decimal? PrdcrIndex
{
get { return prdcrIndex; }
set { prdcrIndex = value; }
}
///
/// 是否已通知监制(0,未通知 1已通知)
///
[Description("是否已通知监制(0,未通知 1已通知)")]
[Nullable(true)]
[DataLength(1)]
public string IsNotice
{
get { return isNotice; }
set { isNotice = value; }
}
///
/// 通知监制时间
///
[Description("通知监制时间")]
[Nullable(true)]
public string NoticeTime
{
get { return noticeTime; }
set { noticeTime = value; }
}
}
}