namespace Sln.Iot.Model.api.Common.Enum { /// /// 配方状态枚举 /// public enum RecipeStatus { /// /// 激活状态 /// Active, /// /// 暂停状态 /// Paused, /// /// 完成状态 /// Completed, /// /// 错误状态 /// Error } }