namespace CompetitionAPI.api.unity
{
///
/// 巡线、排故工器具接口请求实体
///
public class AddUserToolRequest
{
///
/// 用户id
///
public string UserId { get; set; }
///
/// 考试id
///
public string ExamId { get; set; }
///
/// 巡线、排故
///
public string Purpose { get; set; }
///
/// 工具数据
///
public List Tool { get; set; }
}
public class ToolData
{
///
/// 工具名称
///
public string ToolName { get; set; }
///
/// 数量
///
public int Quantity { get; set; }
}
}