12345678910111213141516171819202122232425262728293031 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
-
-
-
-
- public interface IUserDepartmentManage:IRepository<SYS_USER_DEPARTMENT>
- {
-
-
-
- List<SYS_USER> GetUserListByDptId(List<string> dptId);
-
-
-
- List<SYS_DISTRIBUTORS> GetDptListByUserId(int userId);
-
-
-
-
-
-
- bool SaveUserDpt(int userId, string dptId);
- }
- }
|