namespace JSMachine.WMS.Infrastructure.Static { /// /// 静态变量类 /// public static class PaperReturnVariable { /// /// 地磅称重重量 /// public static float ResultWeight { get; set; } = 0; /// /// 地磅当前重量 /// public static float CurrentWeight { get; set; } = 0; /// /// 是否可以读取 /// public static bool CanRead { get; set; } = true; /// /// 条码 /// public static string BarCode { get; set; } } }