using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity { public class UploadHandOverResult { /// /// 单号 /// [JsonProperty(PropertyName = "busNo")] public string BusNo { get; set; } /// /// 服务端ID /// [JsonProperty(PropertyName = "handoverId")] public string HandoverId { get; set; } /// /// 上传日期 /// [JsonProperty(PropertyName = "uploadDate")] public DateTime UploadDate { get; set; } = Convert.ToDateTime(DateTime.Now.ToString("s")); } }