17 lines
332 B
C#
17 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WCS.BLL.Config
|
|
{
|
|
public static class LocalStatic
|
|
{
|
|
/// <summary>
|
|
/// 0x02绿色 0x04蓝色
|
|
/// </summary>
|
|
public static byte CurrentOutStoreColor = 0x02;
|
|
}
|
|
}
|