diff --git a/langguanApi/Controllers/RoleController.cs b/langguanApi/Controllers/RoleController.cs
index 2fdc7e1..49fbede 100644
--- a/langguanApi/Controllers/RoleController.cs
+++ b/langguanApi/Controllers/RoleController.cs
@@ -90,6 +90,5 @@ namespace langguanApi.Controllers
Select(s => new { s.Id, s.RoleName })
});
}
-
}
}
diff --git a/langguanApi/Model/Entity/UserEntity.cs b/langguanApi/Model/Entity/UserEntity.cs
index 68d5bb1..5077f18 100644
--- a/langguanApi/Model/Entity/UserEntity.cs
+++ b/langguanApi/Model/Entity/UserEntity.cs
@@ -51,46 +51,6 @@ namespace langguanApi.Model.Entity
/// 邮箱
///
public string Email { get; set; }
- ///
- /// 学历
- ///
- public string Education { get; set; }
- ///
- /// 手机号
- ///
- public string Tel { get; set; }
- ///
- /// 性别 0表示男 1表示女
- ///
- public byte Sex { get; set; }
- ///
- /// 毕业院校
- ///
- public string University { get; set; }
- ///
- /// 出生日期
- ///
- public DateTime? Brithday { get; set; }
- ///
- /// 籍贯
- ///
- public string Native { get; set; }
- ///
- /// 居住地
- ///
- public string Address { get; set; }
- ///
- /// 入职日期
- ///
- public DateTime? Hiredate { get; set; }
- ///
- /// 是否管理员 0否 1是
- ///
- public byte IsAdmin { get; set; }
- ///
- /// 是否启用 0禁用 1启用
- ///
- public byte IsEnable { get; set; }
}
///
/// 更新用户DTO
diff --git a/langguanApi/Model/ReqPaing.cs b/langguanApi/Model/ReqPaing.cs
index d662f43..40d145a 100644
--- a/langguanApi/Model/ReqPaing.cs
+++ b/langguanApi/Model/ReqPaing.cs
@@ -1,5 +1,4 @@
-
-namespace langguanApi.Model
+namespace langguanApi.Model
{
public class ReqPaing
{