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