shgx_tz_mom/ZR.Model/MES/op/DTO/DetailsOfDetectionDTO.cs

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