You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Basic
|
|
{
|
|
/// <summary>
|
|
/// PLC品牌类
|
|
/// </summary>
|
|
public class PlcBrand
|
|
{
|
|
#region 常量定义
|
|
|
|
/// <summary>
|
|
/// 罗克韦尔AllenBradley
|
|
/// </summary>
|
|
public const string AllenBradley = "AllenBradley";
|
|
/// <summary>
|
|
/// 西门子
|
|
/// </summary>
|
|
public const string Siemens = "Siemens";
|
|
/// <summary>
|
|
/// 三菱
|
|
/// </summary>
|
|
public const string Mitsubishi = "Mitsubishi";
|
|
/// <summary>
|
|
/// 欧姆龙
|
|
/// </summary>
|
|
public const string OMRON = "OMRON";
|
|
/// <summary>
|
|
/// 虚拟PLC
|
|
/// </summary>
|
|
public const string FictitiousPlc = "FictitiousPlc";
|
|
/// <summary>
|
|
/// 工艺回放
|
|
/// </summary>
|
|
public const string Display = "Display";
|
|
/// <summary>
|
|
/// 配置测试
|
|
/// </summary>
|
|
public const string ConfigInfo = "ConfigInfo";
|
|
/// <summary>
|
|
/// 其他
|
|
/// </summary>
|
|
public const string Other = "";
|
|
|
|
#endregion
|
|
}
|
|
}
|