You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Znyc.Recruitment.Admin.Commons.IServices;
|
|
using Znyc.Recruitment.Admin.Security.Dtos;
|
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.IServices
|
|
{
|
|
/// <summary>
|
|
/// 行业岗位服务
|
|
/// </summary>
|
|
public interface IIndustryJobsService : IService<IndustryJobsEntity, IndustryJobsOutputDto, long>
|
|
{
|
|
Task<List<IndustryJobsTreeTableDto>> GetAllIndustryJobsTreeTable();
|
|
|
|
/// <summary>
|
|
/// 查询行业岗位
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<List<IndustryJobsListOutputDto>> GetListByIdAsync(long id);
|
|
|
|
/// <summary>
|
|
/// 查询行业岗位
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<IndustryJobsOutputDto> GetByIdAsync(long id);
|
|
|
|
/// <summary>
|
|
/// 查询所有行业岗位
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<IndustryJobsOutputDto>> GetAllListAsync();
|
|
}
|
|
}
|