123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- namespace GxPress.Service.Interface.Department
- {
- public interface IDepartmentService : IService
- {
- /// <summary>
- /// 删除部门包括下面的子集和用户
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- Task<bool> DeleteAsync(int id);
- }
- }
|