diff --git a/EnumsClass.cs b/EnumsClass.cs
deleted file mode 100644
index 800554b..0000000
--- a/EnumsClass.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-///
-///EnumsClass 的摘要说明
-///
-///
-namespace Basic
-{
- public class EnumsClass
- {
- ///
- /// 统一管理操作枚举
- ///
- public enum ActionEnum
- {
- ///
- /// 查看
- ///
- View,
- ///
- /// 添加
- ///
- Add,
- ///
- /// 修改
- ///
- Edit,
- ///
- /// 删除
- ///
- Delete,
- ///
- /// 导出
- ///
- Export,
- ///
- /// 打印
- ///
- Print,
- ///
- /// 查询
- ///
- Inquiry
- }
- }
-}
\ No newline at end of file