1234567891011121314151617181920212223242526272829303132 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
- /// <summary>
- /// 岗位部门接口
- /// add 作者: 季健国 QQ:181589805 by 2016-09-10
- /// </summary>
- public interface IPostDepartmentManage : IRepository<SYS_POST_DEPARTMENT>
- {
- /// <summary>
- /// 根据部门ID获取部门下的岗位集合
- /// </summary>
- List<SYS_POST> GetPostIDByDptId(string dptId);
- /// <summary>
- /// 根据岗位ID获取所属部门集合
- /// </summary>
- List<SYS_DISTRIBUTORS> GetDptIDByPostID(string postId);
- /// <summary>
- /// 根据部门获取部门岗位,供人员选择岗位使用
- /// </summary>
- dynamic GetPostDptInfoByDptId(string dptId);
- /// <summary>
- /// 设置部门岗位
- /// </summary>
- bool SetPost(string dptId, string postId,out string msg);
- }
- }
|