using System; using System.Collections.Generic; using System.Linq; using System.Numerics; using System.Text; using System.Threading.Tasks; namespace ZR.Model.MES.ql.DTO { /// /// 当前工单 /// public class PLRawMaterialDto { /// /// 流水号 /// public int Id { get; set; } /// /// 组识别号 /// public string plIdGroup { get; set; } /// /// 颜色/代号 /// public string plCode { get; set; } /// /// 批次号 /// public string plPci { get; set; } /// /// 温度 /// public string plValue01 { get; set; } /// /// △L /// public string plValue02 { get; set; } /// /// △A /// public string plValue03 { get; set; } /// /// △B /// public string plValue04 { get; set; } /// /// △E /// public string plValue05 { get; set; } /// /// mDE /// public string plValue06 { get; set; } /// /// 膜厚-名称 /// public string plValue07 { get; set; } /// /// 膜厚-结果 /// public string plValue08 { get; set; } /// /// 粘度 /// public string plValue09 { get; set; } /// /// 固含量 /// public string plValue10 { get; set; } /// /// 电阻值 /// public string plValue11 { get; set; } /// /// 创建人 /// public string plCreatedBy { get; set; } /// /// 创建时间 /// public string plCreatedTime { get; set; } /// /// 更新人 /// public string plUpdatedBy { get; set; } /// /// 更新时间 /// public string plUpdatedTime { get; set; } } }