using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 排产状态
///
public enum ScheduleStatus
{
///
/// 开始
///
[Description("开始")]
Start = 0,
///
/// 重新开始
///
[Description("重新开始")]
ReStart = 1,
///
/// 暂停
///
[Description("暂停")]
Pause = 2,
///
/// 取消
///
[Description("取消")]
Cancel = 3
}
}