using System.ComponentModel;
namespace CMS.Plugin.PipeLineLems.Domain.Shared.Enums
{
///
/// 作业计划状态
///
public enum WorkPlanStatusEnum
{
///
/// 未生产
///
[Description("未生产")]
未生产 = 1,
///
/// 生产中
///
[Description("生产中")]
生产中 = 2,
///
/// 暂停中
///
[Description("暂停中")]
暂停中 = 3,
///
/// 已完成
///
[Description("已完成")]
已完成 = 4,
///
/// 已取消
///
[Description("已取消")]
已取消 = 5,
}
}