123456789101112131415161718192021 |
- using Central.Control.WebApi.DbEntity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Central.Control.WebApi.Service.Interface
- {
- /// <summary>
- ///
- /// </summary>
- public interface IUserService
- {
- /// <summary>
- /// 获取当前登录session
- /// </summary>
- /// <returns></returns>
- SYS_LoginSession GetLoginSession();
- }
- }
|