User.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.WanYuKeFuData.DAL
  6. {
  7. public class User : BaseDataOperate<LYFZ.WanYuKeFuData.Model.User>
  8. {
  9. public User(LYFZ.WanYuKeFuData.Model.DBConnection dbConn)
  10. {
  11. base.DBConn = dbConn;
  12. }
  13. /// <summary>
  14. /// 根据用户ID获取用户对象
  15. /// </summary>
  16. /// <param name="userID"></param>
  17. /// <returns></returns>
  18. public LYFZ.WanYuKeFuData.Model.User GetUser(string userID)
  19. {
  20. if (!String.IsNullOrEmpty(userID))
  21. {
  22. return this.GetModel("UserID", userID);
  23. }
  24. else
  25. {
  26. return new Model.User();
  27. }
  28. }
  29. /// <summary>
  30. /// 验证用户基本信息
  31. /// </summary>
  32. /// <param name="userModel"></param>
  33. /// <param name="msg"></param>
  34. /// <returns></returns>
  35. public bool VerifyUserBaseInfo(LYFZ.WanYuKeFuData.Model.User userModel, ref string msg)
  36. {
  37. if (String.IsNullOrEmpty(userModel.UserID))
  38. {
  39. msg = "帐号不能为空";
  40. return false;
  41. }
  42. if (String.IsNullOrEmpty(userModel.Password))
  43. {
  44. msg = "帐号密码不能为空";
  45. return false;
  46. }
  47. if (!VerifyUserBaseInfo(userModel.UserID, ref msg))
  48. {
  49. return false;
  50. }
  51. return true;
  52. }
  53. /// <summary>
  54. /// 验证用户基本信息
  55. /// </summary>
  56. /// <param name="userModel"></param>
  57. /// <param name="msg"></param>
  58. /// <returns></returns>
  59. public bool VerifyUserBaseInfo(string userID, ref string msg)
  60. {
  61. if (userID.ToLower() == "admin")
  62. {
  63. msg = "“admin”管理员帐号为系统帐号不能修改和删除";
  64. return false;
  65. }
  66. return true;
  67. }
  68. /// <summary>
  69. ///
  70. /// </summary>
  71. /// <param name="userID"></param>
  72. /// <param name="msg"></param>
  73. /// <returns></returns>
  74. public bool VerifyUserExists(string userID, ref string msg)
  75. {
  76. if (this.Exists("UserID", userID))
  77. {
  78. msg = "要添加的帐号“" + userID + "”已经存在,不能重复添加";
  79. return false;
  80. }
  81. return true;
  82. }
  83. }
  84. }