shgx_tz_mom/ZR.Model/MES/op/DTO/DetailsOfDetectionDTO.cs
2023-12-18 19:56:01 +08:00

21 lines
440 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.op.DTO
{
public class DetailsOfDetectionDTO
{
/// <summary>
/// 检测项名称
/// </summary>
public string InspectionName { get; set; }
/// <summary>
/// 检测项值
/// </summary>
public int Counter { get; set; }
}
}