using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 质量检测结果提交给WCS实体
///
public class QualityStatusToWCSParam
{
///
/// 系统编码
///
public string sysCode { get; set; }
///
/// 流转卡号
///
public string processCardNumber { get; set; }
///
/// 质检状态
///
public string qaStatus { get; set; }
///
/// 物料属性状态
///
public string partPropStatus { get; set; }
///
/// 检测结果日期时间
///
public string timestamp { get; set; }
///
/// 人工推送给立库质检结果用fya
///
public string remark { get; set; }
}
}