namespace ZR.Model.dc { /// /// 机器人涂装数据采集表 /// [SugarTable("fnproduction")] public class Fnproduction { /// /// DateTimeSt /// [SugarColumn(ColumnName = "date_time_st")] public string DateTimeSt { get; set; } /// /// DateTimeEnd /// [SugarColumn(ColumnName = "date_time_end")] public string DateTimeEnd { get; set; } /// /// PlcStyle /// [SugarColumn(ColumnName = "plc_style")] public string PlcStyle { get; set; } /// /// PlcColor /// [SugarColumn(ColumnName = "plc_color")] public string PlcColor { get; set; } /// /// PlcVar /// [SugarColumn(ColumnName = "plc_var")] public string PlcVar { get; set; } /// /// PlcStartphoncount /// [SugarColumn(ColumnName = "plc_startPHoncount")] public int? PlcStartphoncount { get; set; } /// /// PlcStartlsshiftcount /// [SugarColumn(ColumnName = "plc_startLSshiftcount")] public int? PlcStartlsshiftcount { get; set; } /// /// RobotNo /// [SugarColumn(ColumnName = "robot_no")] public string RobotNo { get; set; } /// /// RobotProNo /// [SugarColumn(ColumnName = "robot_pro_no")] public string RobotProNo { get; set; } /// /// RobotCcv /// [SugarColumn(ColumnName = "robot_ccv")] public string RobotCcv { get; set; } /// /// RobotVar /// [SugarColumn(ColumnName = "robot_var")] public string RobotVar { get; set; } /// /// RobotFlux /// [SugarColumn(ColumnName = "robot_flux")] public int? RobotFlux { get; set; } /// /// RobotBrushNo /// [SugarColumn(ColumnName = "robot_brush_no")] public string RobotBrushNo { get; set; } /// /// EndStatus /// [SugarColumn(ColumnName = "end_status")] public string EndStatus { get; set; } } }