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