using System.Threading.Tasks; using ZhonTai.Admin.Core.Dto; using ZhonTai.Admin.Services.Employee.Input; using ZhonTai.Admin.Services.Employee.Output; namespace ZhonTai.Admin.Services.Employee { /// /// 员工服务 /// public interface IEmployeeService { Task> GetAsync(long id); Task GetPageAsync(PageInput input); Task AddAsync(EmployeeAddInput input); Task UpdateAsync(EmployeeUpdateInput input); Task DeleteAsync(long id); Task SoftDeleteAsync(long id); Task BatchSoftDeleteAsync(long[] ids); } }