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