using Common.vo.pb;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
///
/// 动态轨道衡总缓存
///
public class PbDynamicRailWay
{
///
/// 系统路径
///
public static readonly string path = System.Environment.CurrentDirectory;
///
/// 实时表采集的数据
///
public static CollectModel collect { get; set; }
///
/// 计量界面锁定状态,已保存后,锁定界面等重量小于500kg后再重置该状态
///
public static bool isLockFrm { get; set; }
///
/// 计量编号,用于后面截图后生成图片的编号使用
///
public static string actualFirstNo { get; set; }
///
/// 计量点配置信息
///
public static MeterBaseSpotInfo sportInfo { get; set; }
public static List sportInfos { get; set; }
///
/// 对应实时库的采集点编号
///
public static string collect_no { get; set; }
}
}