You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
921 B
46 lines
921 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
|
||
|
namespace OpcHost.Common
|
||
|
{
|
||
|
public class OpcHostEnumGeter
|
||
|
{
|
||
|
|
||
|
public enum COLUMNTYPE
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 加工参数
|
||
|
/// </summary>
|
||
|
PARAMETER,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 完成标记
|
||
|
/// </summary>
|
||
|
COMPLETEFLAG,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 可操作标记
|
||
|
/// </summary>
|
||
|
OPERATEFLAG,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设备扫描条码存储位
|
||
|
/// </summary>
|
||
|
EQUIPSCANCODE,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设备扫描完成标记
|
||
|
/// </summary>
|
||
|
EQUIPSCANFLAG,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 加工参数读取完成标记位
|
||
|
/// </summary>
|
||
|
PARAMETERREADED
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|