using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExternalDataSync
{
public class msgTask
{
///
/// 派工单号
///
public string taskOrderCode
{
get;
set;
} = "1";
///
/// 产品编码
///
public string proCode
{
get;
set;
} = "1";
///
/// 产品名称
///
public string proName
{
get;
set;
} = "1";
///
/// 工序编码
///
public string opCode
{
get;
set;
} = "1";
///
/// 工作单元
///
public string workCell
{
get;
set;
} = "1";
///
/// 设备编码
///
public string equiCode
{
get;
set;
} = "1";
///
/// 生产数量
///
public string qty
{
get;
set;
} = "1";
///
/// 计划开始时间
///
public string planStartDate
{
get;
set;
} = "1";
///
/// 计划结束时间
///
public string planEndDate
{
get;
set;
} = "1";
}
}