From afbf8383c93102f9a4eb02d4e6d9a1f28ea5e275 Mon Sep 17 00:00:00 2001 From: "DEVICE8\\12494" Date: Mon, 8 May 2023 17:07:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=9E=9A=E4=B8=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Enums/Behavior.cs | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ProductionMgr/Tnb.ProductionMgr.Entities/Enums/Behavior.cs 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, + } +} +