Files
ww-jst/wmsjst/JSMachine.WMS.Infrastructure/Static/PaperReturnVariable.cs
T

29 lines
694 B
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
namespace JSMachine.WMS.Infrastructure.Static
{
/// <summary>
/// 静态变量类
/// </summary>
public static class PaperReturnVariable
{
/// <summary>
/// 地磅称重重量
/// </summary>
public static float ResultWeight { get; set; } = 0;
/// <summary>
/// 地磅当前重量
/// </summary>
public static float CurrentWeight { get; set; } = 0;
/// <summary>
/// 是否可以读取
/// </summary>
public static bool CanRead { get; set; } = true;
/// <summary>
/// 条码
/// </summary>
public static string BarCode { get; set; }
}
}