using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Abp.Domain.Enum
{
///
/// 开关
///
public enum Switch
{
[Description("开")]
ON,
[Description("关")]
OFF
}
///
/// 工段
///
public enum WorkFlow
{
///
/// 纺丝
///
Spinning=1,
///
/// 捻丝
///
twisting,
///
/// 织布
///
WovenFabric,
///
/// 浸胶
///
Impregnation
}
}