28 lines
485 B
C#
28 lines
485 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.ComponentModel;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JY.Model.Enums
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 上传MES状态
|
||
|
|
/// </summary>
|
||
|
|
public enum EnumUpMesStatus
|
||
|
|
{
|
||
|
|
[Description("全部")]
|
||
|
|
All,
|
||
|
|
|
||
|
|
[Description("自动上传")]
|
||
|
|
Auto,
|
||
|
|
|
||
|
|
[Description("手动上传")]
|
||
|
|
Manual,
|
||
|
|
|
||
|
|
[Description("未上传")]
|
||
|
|
None
|
||
|
|
}
|
||
|
|
}
|