新增枚举
This commit is contained in:
23
ProductionMgr/Tnb.ProductionMgr.Entities/Enums/Behavior.cs
Normal file
23
ProductionMgr/Tnb.ProductionMgr.Entities/Enums/Behavior.cs
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
namespace Tnb.ProductionMgr.Entities.Enums
|
||||||
|
{
|
||||||
|
public enum Behavior
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 任务下发
|
||||||
|
/// </summary>
|
||||||
|
Release = 1,
|
||||||
|
/// <summary>
|
||||||
|
/// 任务开始
|
||||||
|
/// </summary>
|
||||||
|
Start = 2,
|
||||||
|
/// <summary>
|
||||||
|
/// 任务关闭
|
||||||
|
/// </summary>
|
||||||
|
Closed = 4,
|
||||||
|
/// <summary>
|
||||||
|
/// 任务完成
|
||||||
|
/// </summary>
|
||||||
|
Compled = 8,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user