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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Basic
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 固定节点名称类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class FixNodeName
|
|
|
|
|
{
|
|
|
|
|
#region 定义变量
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 画面节点名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string NodeFormName = "nodeForm"; //画面节点名称
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 命令节点名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string NodeCommandName = "nodeCommand"; //命令节点名称
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备节点名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string NodeDeviceName = "nodeDevice"; //设备节点名称
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据源节点名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string NodeDataSourceName = "nodeDataSource";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|