using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
public class CraneScaleCollectModel
{
///
/// 主秤
///
public int mainWgt { get; set; }
///
/// 0稳定,1不稳定,2空磅
///
public int weightStatus { get; set; }
///
/// 当前时间的距离1970.1.1.08:00时间的秒数
///
public DateTime datetime { get; set; }
}
}