Files
wcs/WCS.BLL/Config/JsConfig.cs
hehaibing-1996 311a695498 添加报警窗口
出库流程调试、优化
2024-05-05 16:57:20 +08:00

19 lines
362 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS.BLL.Config
{
/// <summary>
/// json配置文件
/// </summary>
public class JsConfig
{
public List<string> ModuleCodePatterns { get; set; }
public bool IsSameMatCodeOut { get; set; }
}
}