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.
118 lines
2.9 KiB
118 lines
2.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace QMAPP.MD.BLL.Dict
|
|
{
|
|
/// <summary>
|
|
/// 字典类别
|
|
/// </summary>
|
|
[Description("字典类别")]
|
|
public enum DictKind
|
|
{
|
|
|
|
/// <summary>
|
|
/// 设备类别(1:加工设备;2:采集设备;)
|
|
/// </summary>
|
|
[Description("设备类别")]
|
|
EquipmentType,
|
|
|
|
/// <summary>
|
|
/// 关键设备(0:否;1:是;)
|
|
/// </summary>
|
|
[Description("关键设备")]
|
|
EquipmentFlag,
|
|
|
|
/// <summary>
|
|
/// 反冲标识(0:否;1:是;)
|
|
/// </summary>
|
|
[Description("反冲标识")]
|
|
BackFlushFlag,
|
|
|
|
/// <summary>
|
|
/// 质检标记(0:否;1:是;)
|
|
/// </summary>
|
|
[Description("质检标记")]
|
|
QcFlag,
|
|
|
|
/// <summary>
|
|
/// BOM状态(0:待确认;1:确认ok;2:取消)
|
|
/// </summary>
|
|
[Description("BOM状态")]
|
|
BomStatus,
|
|
|
|
/// <summary>
|
|
/// 客供品标志(Y:是;N:否)
|
|
/// </summary>
|
|
[Description("BOM状态")]
|
|
CspFlag,
|
|
|
|
/// <summary>
|
|
/// 外购件标识(0:否;1:是)
|
|
/// </summary>
|
|
[Description("外购件标识")]
|
|
OutSourceFlag,
|
|
|
|
|
|
/// <summary>
|
|
/// 高低配
|
|
/// </summary>
|
|
[Description("高低配")]
|
|
HBTYPE,
|
|
|
|
/// <summary>
|
|
/// 颜色
|
|
/// </summary>
|
|
[Description("颜色")]
|
|
COLOR,
|
|
|
|
/// <summary>
|
|
/// 中心类型(0:生产;1:发运)
|
|
/// </summary>
|
|
[Description("中心类型")]
|
|
CenterType,
|
|
|
|
/// <summary>
|
|
/// 参数类型(0:加工参数;1:生产完成;2:启动信号;3:扫描完成;4:数据读取完成;5:中断信号;6:条码)
|
|
/// </summary>
|
|
[Description("参数类型")]
|
|
Columntype,
|
|
|
|
[Description("处理方式")]
|
|
DealType,
|
|
|
|
/// <summary>
|
|
/// 采集类型(BN:批次号 SN:序列号 PARM:加工参数 MN:模架号)
|
|
/// </summary>
|
|
[Description("采集类型")]
|
|
DataType,
|
|
|
|
/// <summary>
|
|
/// 采集方式(1:实时采集 2:忽略采集 3:自适应采集点)
|
|
/// </summary>
|
|
[Description("采集方式")]
|
|
DaMode,
|
|
|
|
/// <summary>
|
|
/// 过程主码(0:否 1:是)
|
|
/// </summary>
|
|
[Description("过程主码")]
|
|
IsProcessCode,
|
|
|
|
/// <summary>
|
|
/// 区分模具(0:否 1:是)
|
|
/// </summary>
|
|
[Description("区分模具")]
|
|
DivbyMould,
|
|
|
|
/// <summary>
|
|
/// 使用状态:0未使用 1使用中 2使用完成
|
|
/// </summary>
|
|
[Description("使用状态")]
|
|
UsingState,
|
|
|
|
|
|
}
|
|
}
|
|
|