1
dengjunjie
2025-06-26 72390e0230b64cd43fedf0ba8e17aba097568a4a
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_ISystemService/ISys_UserService.cs
@@ -6,6 +6,7 @@
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseServices;
using WIDESEA_ISystemRepository;
using WIDESEA_Model;
using WIDESEA_Model.Models;
@@ -13,10 +14,12 @@
{
    public interface ISys_UserService : IService<Sys_User>
    {
        ISys_UserRepository Repository { get; }
        WebResponseContent Login(LoginInfo loginInfo);
        WebResponseContent GetCurrentUserInfo();
        WebResponseContent ModifyPwd(string oldPwd, string newPwd);
        WebResponseContent ModifyPwd(string oldPwd, string newPwd, int user_Id);
    }
}