You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
422 B

/*
*Sys_Department
*/
using VOL.Core.BaseProvider;
using VOL.Entity.DomainModels;
using VOL.Core.Utilities;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace VOL.System.IServices
{
public partial interface ISys_DepartmentService
{
// 获取用户关联根部门
Task<Sys_Department> GetUserDepartment(int userId);
}
}