namespace ZJ_BYD.ViewModel { public class TestItemVM { public int Id { get; set; } /// /// 工控机标识 /// public string IpcId { get; set; } /// /// 产线编码 /// public string LineCode { get; set; } /// /// 机型编码 /// public string MachineTypeCode { get; set; } /// /// 机型名称 /// public string MachineTypeName { get; set; } /// /// 工位编码 /// public string StationCode { get; set; } /// /// 工位名称 /// public string StationName { get; set; } /// /// 点位编码 /// public string PointCode { get; set; } /// /// 点位名称 /// public string PointName { get; set; } /// /// 点位起始地址 /// public string PointStartAddress { get; set; } /// /// 长度 /// public string PointLength { get; set; } /// /// 数据类型 /// public string PointDataType { get; set; } /// /// 设定值 /// public string Val { get; set; } /// /// 是否使用中 /// public bool IsUsed { get; set; } /// /// 是否使用中 /// public string StrIsUsed { get; set; } } }