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 { /// /// 检测项名称 /// public string InspectionName { get; set; } /// /// 检测项值 /// public int Counter { get; set; } } }