12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace Dfs.WayneChina.CheryFuelController.Messages
- {
- public class UploadFilling
- {
- [JsonPropertyName("serno")]
- public string SerialNo { get; set; }
- [JsonPropertyName("vin")]
- public string Vin { get; set; }
- [JsonPropertyName("eqp_num")]
- public string EquipmentNumber { get; set; }
- [JsonPropertyName("fill_result")]
- public string FillingResult { get; set; }
- [JsonPropertyName("complete_time")]
- public DateTime CompletionTime { get; set; }
- [JsonPropertyName("list")]
- public List<DataItem> Items { get; set; }
- }
- public class DataItem
- {
- [JsonPropertyName("item_name")]
- public string ItemName { get; set; }
- [JsonPropertyName("item_value")]
- public string ItemValue { get; set; }
- }
- }
|