using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Models
{
///
/// 结果加工参数
///
public class ProductResultParameters
{
///
/// 设备编号
///
public string equipNum { get; set; }
///
/// 类型单进整出:DZ 整进整出:ZZ 单进单出:DD 未传时默认按照ZZ进行数据解析
///
public string type { get; set; }
///
/// 设备数据
///
public string payload { get; set; }
}
///
/// 单进整出
///
public class Payload1
{
///
/// 工厂代码
///
public string siteCode { get; set; }
///
/// 产线编号
///
public string lineCode { get; set; }
///
/// 员工账号
///
public string userName { get; set; }
///
/// 物料编码 工单产成品物料号
///
public string materialCode { get; set; }
///
/// 小车号 装载电池的小车编号
///
public string carCode { get; set; }
///
/// 补录 是否属于补录数据(BL=补录,JS=及时上传)
///
public string collection { get; set; }
///
/// 采集时间 数据的采集时间
///
public string recordDate { get; set; }
///
/// 条码数量 传入条码的个数
///
public int qty { get; set; }
///
/// RFID托杯码
///
public string containerCode { get; set; }
///
/// 条码数组
///
public IdentificationListItem identification { get; set; }
public List tagDataVOList { get; set; }
}
public class IdentificationListItem
{
/// ///
/// 条码
///
public string identification { get; set; }
///
/// 质量状态 各产品所有参数的整体判断结果(Y/N)
///
public string qualityStatus { get; set; }
///
/// 采集数组
///
}
public class TagDataVOListItem
{
///
/// 设备每个采集项规定的编号
///
public string tagCode { get; set; }
///
/// 采集值
///
public string tagValue { get; set; }
///
/// 采集项采集时间
///
public string tagTime { get; set; }
///
/// 各产品所有参数的整体判断结果(Y/N)
///
public string tagCalculateResult { get; set; }
///
/// 采集项描述
///
public string tagRemark { get; set; }
}
}