first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,28 @@
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; }
}
}