using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class StaticCollectModel { public string pointid { get; set; } /// /// 车号 /// public string carno { get; set; } /// /// 主秤 /// public int mainWgt { get; set; } /// /// 副秤 /// public int viceWgt { get; set; } /// /// 0稳定,1不稳定,2空磅 /// public int weightStatus { get; set; } /// /// 当前时间的距离1970.1.1.08:00时间的秒数 /// public DateTime datetime { get; set; } /// /// 车型 /// public string carType { get; set; } /// /// 第一个红外 0绿 1红 /// public string firstRed { get; set; } /// /// 第二个红外 0绿 1红 /// public string secondRed { get; set; } /// /// 第三个红外 0绿 1红 /// public string thirdRed { get; set; } } }