using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExternalDataSync.MOM
{
///临时工艺通知下发
public class TemporaryChangeData
{
///
// 产品编码、型号
///
public string productNo
{
get;
set;
} = "";
///
// 产品名称
///
public string productName
{
get;
set;
} = "";
///
// 项目代号
///
public string projectNo
{
get;
set;
} = "";
///
// 项目名称
///
public string projectName
{
get;
set;
} = "";
///
/// 临时工艺通知单号
///
public string technicalChangeOrderNo
{
get;
set;
} = "";
///
// 批次数量
///
public string batchQty
{
get;
set;
} = "";
///
// 发放时间
///
public string createOn
{
get;
set;
} = "";
///
// 开始时间
///
public decimal effectiveDateStart
{
get;
set;
} = 0;
///
// 结束时间
///
public string effectiveDateEnd
{
get;
set;
} = "";
///
// 临时工艺通知单文件链接
///
public string techFileUrl
{
get;
set;
} = "";
///
// 原因
///
public int reason
{
get;
set;
} = 0;
///
// 编制
///
public string staffing
{
get;
set;
} = "";
///
// 编制日期
///
public string staffingDate
{
get;
set;
} = "";
///
// 校对
///
public string proofread
{
get;
set;
} = "";
///
// 校对日期
///
public string proofreadDate
{
get;
set;
} = "";
///
// 审核
///
public string check
{
get;
set;
} = "";
///
// 审核日期
///
public string checkDate
{
get;
set;
} = "";
///
// 会签
///
public string countersign
{
get;
set;
} = "";
///
// 会签日期
///
public string countersignDate
{
get;
set;
} = "";
///
// 批准
///
public string approve
{
get;
set;
} = "";
///
// 批准日期
///
public string approveDate
{
get;
set;
} = "";
///
// 临时工艺通知详细列表
///
public List changeList
{
get;
set;
} = null;
///
// 临时工艺文件列表
///
public List fileList
{
get;
set;
} = null;
///
// 接收部门列表
///
public List departmentList
{
get;
set;
} = null;
///
// 绑定工单列表
///
public List wipOrderList
{
get;
set;
} = null;
}
}