2025-03-28 09:49:56 +08:00

56 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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