涂装数据采集

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; }
}
}