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; }
}
}