using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Comm { public class Wheel_trace { /// /// 车轮上线(DB610) /// public class Wheel_online { /// /// 名称 /// public string Name { get; set; } /// /// 车轮SN号 /// public string o_wp_id { get; set; } /// /// 上线时间 /// public string o_online_time { get; set; } /// /// 申请 /// public byte oi_on { get; set; } } /// /// 车轮加工(DB611) /// public class Wheel_Machine { /// /// 名称 /// public string Name { get; set; } /// /// 车轮SN号 /// public string o_wp_id { get; set; } /// /// 加工开始时间 /// public string o_mach_start_time { get; set; } /// /// 加工完成时间 /// public string o_mach_finish_time { get; set; } /// /// 操作人 /// public string o_operator { get; set; } /// /// 班组 /// public string o_shift { get; set; } /// /// 加工质量状态 /// public Int16 o_wp_status { get; set; } /// /// 完成情况 /// public Int16 o_wp_process { get; set; } /// /// 申请 /// public byte oi_on { get; set; } } /// /// 车轮下线(DB612) /// public class Wheel_offline { /// /// 名称 /// public string Name { get; set; } /// /// 车轮SN号 /// public string o_wp_id { get; set; } /// /// 下线时间 /// public string o_offline_time { get; set; } /// /// 去向 /// public byte o_direction { get; set; } /// /// 申请 /// public byte oi_on { get; set; } } } }