From d1db85770e0dc760e6ea7017df9ec19b6c0d978d Mon Sep 17 00:00:00 2001 From: quowingwang Date: Tue, 20 Jan 2026 17:00:59 +0800 Subject: [PATCH] =?UTF-8?q?PLC=E5=B7=A5=E8=89=BA=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PLC/Model/Dto/PlcProductionDataDto.cs | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/RIZO.Admin.WebApi/PLC/Model/Dto/PlcProductionDataDto.cs b/RIZO.Admin.WebApi/PLC/Model/Dto/PlcProductionDataDto.cs index 6c3d387..b0355f4 100644 --- a/RIZO.Admin.WebApi/PLC/Model/Dto/PlcProductionDataDto.cs +++ b/RIZO.Admin.WebApi/PLC/Model/Dto/PlcProductionDataDto.cs @@ -26,41 +26,41 @@ namespace RIZO.Admin.WebApi.PLC.Model.Dto [Required(ErrorMessage = "主键ID不能为空")] public int Id { get; set; } - public string LineCode { get; set; } + public string? LineCode { get; set; } - public string PlcIp { get; set; } + public string? PlcIp { get; set; } - public string ProductCode { get; set; } + public string? ProductCode { get; set; } - public string ProductName { get; set; } + public string? ProductName { get; set; } - public string PartCode { get; set; } + public string? PartCode { get; set; } - public string PartName { get; set; } + public string? PartName { get; set; } - public string ProcessName { get; set; } + public string? ProcessName { get; set; } - public string ParamName { get; set; } + public string? ParamName { get; set; } - public string ParamValue { get; set; } + public string? ParamValue { get; set; } public DateTime? OccurTime { get; set; } - public string QualificationFlag { get; set; } + public string? QualificationFlag { get; set; } - public string ReworkFlag { get; set; } + public string? ReworkFlag { get; set; } public int? ProductionCycle { get; set; } public int? AutoManual { get; set; } public int? RunStatus { get; set; } - public string Remark { get; set; } + public string? Remark { get; set; } - public string CreatedBy { get; set; } + public string? CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } - public string UpdatedBy { get; set; } + public string? UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; }