using System.Collections.Generic; using System.Threading.Tasks; using YiSha.Entity.OrganizationManage; using YiSha.Model.Param.OrganizationManage; using YiSha.Model.Result; using YiSha.Util.Model; namespace YiSha.IBusiness.OrganizationManage { public partial interface IDepartmentBLL { #region 获取数据 Task>> GetListPartial(DepartmentListParam param); Task>> GetZtreeDepartmentListPartial(DepartmentListParam param); Task>> GetZtreeUserListPartial(DepartmentListParam param); Task> GetEntityPartial(int id); Task> GetMaxSortPartial(); #endregion #region 提交数据 Task> SaveFormPartial(DepartmentEntity entity); Task DeleteFormPartial(string ids); #endregion #region 公共方法 /// /// 获取当前部门及下面所有的部门 /// /// /// /// Task> GetChildrenDepartmentIdListPartial(List departmentList, int departmentId); #endregion #region 私有方法 #endregion } }