using DH.Commons.Enums; using DH.Devices.Devices; using System.ComponentModel; using System.Drawing.Design; using System.Text.Json.Serialization; namespace DH.Process { public class ProcessConfigBase { [JsonPropertyName("station_code")] public string StationCode { get; set; } #region 设备配置 [Category("设备配置")] [Description("相机配置")] [DisplayName("相机配置")] [JsonPropertyName("camera_config_collection")] //[TypeConverter(typeof(CollectionCountConvert))] //[Editor(typeof(InitialConfigCollectionEditor), typeof(UITypeEditor))] public List CameraConfigCollection { get; set; } = new List(); [Category("设备配置")] [Description("模型配置")] [DisplayName("模型配置")] [JsonPropertyName("detection_config_collection")] //[TypeConverter(typeof(CollectionCountConvert))] //[Editor(typeof(InitialConfigCollectionEditor), typeof(UITypeEditor))] public List DetectionConfigCollection { get; set; } = new List(); // [Category("设备配置")] // [Description("PLC配置")] // [DisplayName("PLC配置")] // [TypeConverter(typeof(CollectionCountConvert))] // [Editor(typeof(InitialConfigCollectionEditor), typeof(UITypeEditor))] // public List PLCConfigCollection { get; set; } = new List(); // [Category("设备配置")] // [Description("其他设备配置")] // [DisplayName("其他设备配置")] // [TypeConverter(typeof(CollectionCountConvert))] // [Editor(typeof(InitialConfigCollectionEditor), typeof(UITypeEditor))] // public List DeviceConfigs { get; set; } = new List(); #endregion } }