using System.Collections.Generic; namespace JinYuan.Models { /// /// CPQCPT数据 /// public class CPQCPTDate { /// /// 注液前重量 /// public string CTP_PreWeighing_Value { get; set; } /// /// 保液量 /// public string CTP_Liquid_Retention_Value { get; set; } /// /// 注液量 /// public string CTP_Filling_Value { get; set; } /// /// 失液量 /// public string CTP_Liquid_Loss_Value { get; set; } /// /// 充氦值 /// public string CTP_Helium_Filling_Value { get; set; } /// /// 钟罩真空值 /// public string CTP_Belljar_Vacuum_Value { get; set; } /// /// 钟罩真空时间 /// public string CTP_Belljar_Vacuum_Time { get; set; } /// /// 钟罩高压值 /// public string CTP_Belljar_HighPressure_Value { get; set; } /// /// 钟罩高压时间 /// public string CTP_Belljar_HighPressure_Time { get; set; } /// /// 钟罩循环次数 /// public string CTP_Belljar_Cycles_Number { get; set; } /// /// 回氦前真空值 /// public string CTP_Pre_Helium_Value { get; set; } /// /// 回氦后真空值 /// public string CTP_Post_Helium_Value { get; set; } /// /// 平压压力 /// public string CTP_Flat_Pressure { get; set; } /// /// 电芯测厚压力 /// public string CTP_Cell_Thickness_Pressure { get; set; } /// /// 注液后重量 /// public string CTQ_PostWeighing_Value { get; set; } /// /// 电芯厚度 /// public string CTQ_Cell_Thickness { get; set; } /// /// 终压胶粒高度 /// public string CTQ_Finalpress_Rubber_Height { get; set; } /// /// 注液前负压压力 /// public string CTP_PreInjection_Pressure { get; set; } /// /// 电解液保有量- /// public string CTQ_Electrolyte_Inventory { get; set; } /// /// 预钉打钉行程 /// public string CTP_PreNailing_Stroke { get; set; } /// /// 回氦前抽真空压力 /// public string CTP_PreHelium_Vacuum_Pressure { get; set; } /// /// 终压打钉行程 /// public string CTP_FinalNailing_Stroke { get; set; } /// /// 压密封胶粒后电芯厚度 /// public string CTQ_Finalpress_Rubber_Thickness { get; set; } } /// /// 进出站上传数据 /// public class EnterandExit { /// /// BU编码 /// public string bu_id; /// /// 区域简称 /// public string district_id; /// /// 工厂编码 /// public string factory_id; /// /// 产线编码 /// public string production_line_id; /// /// 工序编码 /// public string production_processes_id; /// /// 工作中心编码 /// public string work_center_id; /// /// 工站 /// public string station_id; /// /// 设备编码 /// public string device_name; /// /// 进出站标识 /// public string action; /// /// 动作时间(进出站) /// public string action_time; } public class CollectionUpload { /// /// BU编码 /// public string bu_id; /// /// 区域简称 /// public string district_id; /// /// 工厂编码 /// public string factory_id; /// /// 产线编码 /// public string production_line_id; /// /// 工序编码 /// public string production_processes_id; /// /// 工作中心编码 /// public string work_center_id; /// /// 工站 /// public string station_id; /// /// 设备编码 /// public string device_name; /// /// 采集项数据列表 /// public List taglist { get; set; } } public class Collection { /// /// 时间 /// public string device_time { get; set; } /// /// 采集项键值对 /// public Dictionary collection_items { get; set; } } }