using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Mesnac.Action.ChemicalWeighing.Entity { /// /// 计划状态枚举类型 /// public enum PlanState { /// /// 未知状态 /// UnKnow = -1, /// /// 初始化 /// Init = 0, /// /// 新增(网络计划) /// New = 1, /// /// 下达(网络计划) /// Issued = 2, /// /// 正在运行(机台接收网络) /// Producting = 3, /// /// 已下传(机台计划) /// Download = 4, /// /// 未启动(PLC) /// UnStart = 5, /// /// 运行中(PLC) /// Received = 6, /// /// 已终止(PLC) /// Terminated = 7, /// /// 已完成(PLC) /// Completed = 8 } }