You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
/** 版本信息模板在安装目录下,可自行修改。
|
|
* TBL_CAMERA.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: TBL_CAMERA
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2019/6/17 14:12:21 N/A 初版
|
|
*
|
|
*/
|
|
using System;
|
|
namespace FangYar.Model
|
|
{
|
|
/// <summary>
|
|
/// 爱停车道闸数据接收表(入场)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class DZAtcInMo
|
|
{
|
|
public DZAtcInMo()
|
|
{}
|
|
#region Model
|
|
|
|
|
|
public string service_name { get; set; }//服务名
|
|
public string sign { get; set; }//数据签名
|
|
public string park_id { get; set; }//车场编号
|
|
public string data { get; set; }//数据,下列字段组成的json对象
|
|
|
|
|
|
|
|
//data:下列字段组成的json对象
|
|
public string car_number { get; set; }//车牌号
|
|
|
|
public string in_time { get; set; }//车辆入场时间
|
|
|
|
public string car_type { get; set; }//车型
|
|
|
|
public string c_type { get; set; }//进场类型
|
|
|
|
public string uid { get; set; }//入场收费员编号
|
|
|
|
public string operator_name { get; set; }// 入场收费员名称
|
|
|
|
public int order_id { get; set; }//订单唯一编号
|
|
|
|
public string empty_plot { get; set; }//空闲车位数
|
|
|
|
public string in_channel_id { get; set; }//进场通道
|
|
|
|
public int worksite_id { get; set; }//岗亭编号
|
|
|
|
public string remark { get; set; }//备注
|
|
|
|
public string force_update { get; set; }// 是否强力删除云平台重复订单 1删除,0不删除
|
|
|
|
public string pic_addr { get; set; }//车辆入场图片
|
|
|
|
|
|
#endregion Model
|
|
}
|
|
}
|
|
|
|
|