59 lines
1.4 KiB
C#
59 lines
1.4 KiB
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MoviconHub.App.Models
|
|
{
|
|
/// <summary>
|
|
/// 不论多部件还是单部件均采用数组,若为单部件则数组中仅有一个对象
|
|
/// </summary>
|
|
public class ComponentsInfo
|
|
{
|
|
/// <summary>
|
|
/// 车型
|
|
/// </summary>
|
|
[JsonProperty("part_Vehicle_model")]
|
|
public string part_Vehicle_model { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车号
|
|
/// </summary>
|
|
[JsonProperty("part_locomotive_number")]
|
|
public string part_locomotive_number { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修程
|
|
/// </summary>
|
|
[JsonProperty("part_repair_process")]
|
|
public string part_repair_process { get; set; }
|
|
|
|
/// <summary>
|
|
/// 位别
|
|
/// </summary>
|
|
[JsonProperty("part_position")]
|
|
public string part_position { get; set; }
|
|
|
|
/// <summary>
|
|
/// 部件名称
|
|
/// </summary>
|
|
[JsonProperty("component_name")]
|
|
public string part_name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 部件编号
|
|
/// </summary>
|
|
[JsonProperty("part_num")]
|
|
public string part_num { get; set; }
|
|
|
|
/// <summary>
|
|
/// 二维码id
|
|
/// </summary>
|
|
[JsonProperty("part_qrid")]
|
|
public string part_qrid { get; set; }
|
|
|
|
}
|
|
}
|