using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.vo.pb
{
///
/// 实时表采集值,当界面锁定后将不更新属性值
///
public class CollectModel
{
///
/// 计量点
///
public string pointid { get; set; }
///
/// 车号
///
public string carno { get; set; }
///
/// 重量(kg)
///
public int weight { get; set; }
///
/// 重量状态 0:重量稳定; 1:重量不稳定; 2:空磅
///
public int weightStatus { get; set; }
///
/// 停车状态 0:正常(头尾都未压线) 1:车头压线 2:车尾压线 3:两头压线; 记录在重量稳定后生成
///
public int parkStatus { get; set; }
///
/// 当前时间的距离1970.1.1.08:00时间的秒数
///
public DateTime datetime { get; set; }
///
/// 0:车牌抓拍; 1:RFID 识别
///
public int licType { get; set; }
///
/// 双车号识别类型 0:都识别且一致 1:只有一个识别 2:都识别但不一致 3:都不识别
///
public string carnoAlert { get; set; }
///
/// 视觉识别1
///
public string videoCarNo1 { get; set; }
///
/// 视觉识别2
///
public string videoCarNo2 { get; set; }
///
/// 视觉识别2
///
public string rfidCarNo { get; set; }
}
}