2025-03-21 08:51:20 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using DH.Commons.Base;
|
2025-03-27 12:07:23 +08:00
|
|
|
|
using DH.Commons.Enums;
|
2025-03-21 08:51:20 +08:00
|
|
|
|
|
|
|
|
|
namespace DH.Commons.Models
|
|
|
|
|
{
|
|
|
|
|
public static class SystemModel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前方案
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static string CurrentScheme=string.Empty;
|
|
|
|
|
|
2025-03-27 12:07:23 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static EnumStatus CurrentStatus =EnumStatus.未运行;
|
2025-03-21 08:51:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配置集合
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class ConfigModel
|
|
|
|
|
{
|
|
|
|
|
public static List<CameraBase> CameraBaseList = new List<CameraBase>();
|
|
|
|
|
public static List<PLCBase> PLCBaseList = new List<PLCBase>();
|
|
|
|
|
public static List<DetectionConfig> DetectionList = new List<DetectionConfig>();
|
2025-03-27 11:37:48 +08:00
|
|
|
|
public static List<GlobalConfig> GlobalList = new List<GlobalConfig>();
|
2025-03-21 08:51:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|