Files
shgx_tz_mes_backend_sync/ZR.Model/MES/op/DTO/DetailsOfDetectionDTO.cs
2024-06-07 11:05:58 +08:00

15 lines
323 B
C#

namespace ZR.Model.MES.op.DTO
{
public class DetailsOfDetectionDTO
{
/// <summary>
/// 检测项名称
/// </summary>
public string InspectionName { get; set; }
/// <summary>
/// 检测项值
/// </summary>
public int Counter { get; set; }
}
}