RuralPowerCompetition_yizhe.../DataService/Other/exam_tool.cs

37 lines
735 B
C#

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