using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BayonetTransfer.Model { internal class ApiBayonetModel { /// /// 服务区名称 /// public string Serverpart_Name { get; set; } /// /// 服务区位置名称 /// public string Serverpart_Region { get; set; } /// /// 进出类型:0出,1进 /// public int InOut_Type { get; set; } /// /// 时间 /// public long InOut_Time { get; set; } /// /// 车辆类型 /// public string Vehicle_Type { get; set; } /// /// 车牌号 /// public string License_Plate { get; set; } /// /// 车速(km/h) /// public decimal? Vehicle_Speed { get; set; } /// /// 停留时长(秒) /// public int Stay_Times { get; set; } /// /// 图片 /// public string Bayonet_Desc { get; set; } } }