涂装数据采集

This commit is contained in:
小魔仙
2025-05-26 16:25:46 +08:00
parent 2f368ff35c
commit 7f780dd36e
8 changed files with 376 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.dc.Dto
{
/// <summary>
/// 机器人涂装数据采集表查询对象
/// </summary>
public class FnproductionQueryDto : PagerInfo
{
}
/// <summary>
/// 机器人涂装数据采集表输入输出对象
/// </summary>
public class FnproductionDto
{
public string DateTimeSt { get; set; }
public string DateTimeEnd { get; set; }
public string PlcStyle { get; set; }
public string PlcColor { get; set; }
public string PlcVar { get; set; }
public int? PlcStartphoncount { get; set; }
public int? PlcStartlsshiftcount { get; set; }
public string RobotNo { get; set; }
public string RobotProNo { get; set; }
public string RobotCcv { get; set; }
public string RobotVar { get; set; }
public int? RobotFlux { get; set; }
public string RobotBrushNo { get; set; }
public string EndStatus { get; set; }
}
}

View File

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