using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExternalDataSync.MOM
{
///生产报工上传
public class ReportUploadData
{
///
// 订单号
///
public string orderNumber
{
get;
set;
} = "";
///
// SN号
///
public string snCode
{
get;
set;
} = "";
///
// 产品型号
///
public string productModel
{
get;
set;
} = "";
///
// 配方号
///
public string recipeNumber
{
get;
set;
} = "";
///
/// 合格标志
///
public string qualityResult
{
get;
set;
} = "";
///
// 工位号
///
public string stationCode
{
get;
set;
} = "";
///
// 生产日期
///
public string productionDate
{
get;
set;
} = "";
///
// 质量数据列表
///
public List qualityList
{
get;
set;
} = null;
}
}