2025-05-22 13:06:49 +08:00
|
|
|
|
namespace PlcTool.Siemens.PLCAttribute;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用于标记PLC的系列
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <remarks>
|
|
|
|
|
|
/// 支持的string:
|
|
|
|
|
|
/// 1500
|
|
|
|
|
|
/// 1200
|
|
|
|
|
|
/// 300
|
|
|
|
|
|
/// 400
|
|
|
|
|
|
/// 200
|
|
|
|
|
|
/// 200s
|
|
|
|
|
|
/// </remarks>
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
2024-05-14 16:30:56 +08:00
|
|
|
|
public class PlcKindAttribute : Attribute { }
|