using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataService.Other { public class exam_tool { /// /// 考试id /// public string ExamId { get; set; } /// /// 用途 巡线、排故 /// public string Purpose { get; set; } /// /// 工具名称 /// public string ToolName { get; set; } /// /// 类型 工具、材料、着装 /// public string ToolType { get; set; } /// /// 数量 /// public int Quantity { get; set; } } }