diff --git a/ProductionMgr/Tnb.ProductionMgr.Entities/Enums/Behavior.cs b/ProductionMgr/Tnb.ProductionMgr.Entities/Enums/Behavior.cs
new file mode 100644
index 00000000..1af1896b
--- /dev/null
+++ b/ProductionMgr/Tnb.ProductionMgr.Entities/Enums/Behavior.cs
@@ -0,0 +1,23 @@
+namespace Tnb.ProductionMgr.Entities.Enums
+{
+ public enum Behavior
+ {
+ ///
+ /// 任务下发
+ ///
+ Release = 1,
+ ///
+ /// 任务开始
+ ///
+ Start = 2,
+ ///
+ /// 任务关闭
+ ///
+ Closed = 4,
+ ///
+ /// 任务完成
+ ///
+ Compled = 8,
+ }
+}
+