1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace Dfs.WayneChina.CheryFuelController.Messages
- {
- public class ReceiveFuelingJob
- {
-
-
-
- [JsonPropertyName("serno")]
- public string SerialNo { get; set; }
-
-
-
- [JsonPropertyName("vin")]
- public string Vin { get; set; }
-
-
-
- [JsonPropertyName("part_num")]
- public string PartNumber { get; set; }
-
-
-
- [JsonPropertyName("csn")]
- public string Csn { get; set; }
-
-
-
-
- [JsonPropertyName("send_time")]
- public DateTime SendTime { get; set; }
- [JsonPropertyName("job_no")]
- public string JobNo { get; set; }
- }
- }
|