SysUserLogonLogic.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * 命名空间: CZFW.Framework.Modules.Logic
  3. *
  4. * 功 能: N/A
  5. * 类 名: SysUserLogonLogic
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2016/12/17 1:28:37 曹湘 初稿
  10. *
  11. * Copyright (c) 2016 CHUANGZHIKEJI Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:创执科技(北京)有限公司                │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. using CZFW.Framework.Interface;
  19. using CZFW.Framework.Model.ViewModel;
  20. using CZFW.Framework.Model.Entity;
  21. namespace CZFW.Framework.Logic
  22. {
  23. public class SysUserLogonLogic : LogicBase<SysUserLogonEntity>, ISysUserLogon
  24. {
  25. public ResultModel ChangePassword(int id, string oldPassword, string newPassword)
  26. {
  27. var userLogon = GetEntity(x => x.UserId == id);
  28. if (userLogon == null)
  29. {
  30. return new ResultModel { Success = false,Message="没有找到相关的用户记录!" };
  31. }
  32. if (userLogon.UserPassword != oldPassword) return new ResultModel { Success = false, Message = "原密码输入有误!" }; ;
  33. userLogon.UserPassword = newPassword;
  34. userLogon.ChangePasswordDate = DateTime.Now;
  35. return EditEntity(userLogon);
  36. }
  37. }
  38. }