You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
733 B
C#

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