You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
516 B
24 lines
516 B
1 year ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
|
||
|
public enum PlanDayState
|
||
|
{
|
||
|
[Description("取消")]
|
||
|
Cancelled = -1,
|
||
|
[Description("新建")]
|
||
|
New = 0,
|
||
|
[Description("提交")]
|
||
|
Handling = 1,
|
||
|
[Description("已分配工单")]
|
||
|
Assigned = 2,
|
||
|
[Description("禁止自动分配工单")]
|
||
|
AssignDisable = 3,
|
||
|
[Description("完成")]
|
||
|
Finished = 4,
|
||
|
[Description("失败")]
|
||
|
Failed = 5,
|
||
|
}
|
||
|
}
|