using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MoviconHub.App.Models { /// /// 部件信息数据模型 /// public class PartInfo { [JsonProperty("part_id")] public string PartId { get; set; } [JsonProperty("order_id")] public string OrderId { get; set; } [JsonProperty("vehicle_model")] public string VehicleModel { get; set; } [JsonProperty("locomotive_number")] public string LocomotiveNumber { get; set; } [JsonProperty("repair_process")] public string RepairProcess { get; set; } [JsonProperty("component_name")] public string ComponentName { get; set; } [JsonProperty("part_position")] public string PartPosition { get; set; } [JsonProperty("part_num")] public string PartNum { get; set; } [JsonProperty("order_type_id")] public string OrderTypeId { get; set; } [JsonProperty("product_type_id")] public string ProductTypeId { get; set; } [JsonProperty("part_qrCode")] public string PartQrCode { get; set; } [JsonProperty("traceable_code")] public string TraceableCode { get; set; } [JsonProperty("part_code")] public string PartCode { get; set; } } }