软测单独项目
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.
 
 
 
 
 
 

92 lines
3.0 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 DZAtcOutMo
{
public DZAtcOutMo()
{}
#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 long in_time { get; set; }//进场时间(unix时间戳格式)
public long out_time { get; set; }//出场时间(unix时间戳格式)
public string uid { get; set; }//出场收费员编号(支持数字 字母 _ )
public string out_operator_name { get; set; }// 出场场收费员名称
public int duration { get; set; }// 停车时长(分钟)
public string car_type { get; set; }//车型
public string c_type { get; set; }//进场类型
public string out_type { get; set; }//出场类型
public string pay_type { get; set; }//支付类型
public string auth_code { get; set; }//授权码,支付类型是sweepcode时必传
public int empty_plot { get; set; }//空闲车位数
public string total { get; set; }//岗亭实时订单金额(不包含网络支付、已减免的部分)
public string order_id { get; set; }//订单记录号(车辆在停车场停车唯一订单编号,对应入场订单编号,支持数字 字母 _ )
public string freereasons { get; set; }//免费原因
public string out_channel_id { get; set; }//出场通道
public string in_channel_id { get; set; }//入场通道
public string work_id { get; set; }//岗亭编号
public string ticket_id { get; set; }//减免券ID
public string reduce_amount { get; set; }//减免金额
public string pic_addr { get; set; }//车辆出场图片
public string source { get; set; }//数据来源
public int flag { get; set; }//第三方道闸推送类型 0- 正常出场 1-减免券查询/推送出场 2-无入场记录收费 3-短驳车查询/无牌车
public string reduction_rules { get; set; }//减免规则
public int charge_status { get; set; }//收费状况 0-包月 1-包年 2-按次
public string amount_receivable { get; set; }//订单应收金额
public string electronic_pay { get; set; }//网络支付金额(包含电子支付和电子预付)
#endregion Model
}
}