generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
520 B
C#
28 lines
520 B
C#
namespace Sln.Iot.Model.api.Common.Enum
|
|
{
|
|
/// <summary>
|
|
/// 配方状态枚举
|
|
/// </summary>
|
|
public enum RecipeStatus
|
|
{
|
|
/// <summary>
|
|
/// 激活状态
|
|
/// </summary>
|
|
Active,
|
|
|
|
/// <summary>
|
|
/// 暂停状态
|
|
/// </summary>
|
|
Paused,
|
|
|
|
/// <summary>
|
|
/// 完成状态
|
|
/// </summary>
|
|
Completed,
|
|
|
|
/// <summary>
|
|
/// 错误状态
|
|
/// </summary>
|
|
Error
|
|
}
|
|
} |