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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Services/Ghra/Ghra_TitleServices.cs

22 lines
618 B

namespace Tiobon.Core.Services;
/// <summary>
/// 岗位 (服务)
/// </summary>
public class Ghra_TitleServices : BaseServices<Ghra_Title, Ghra_TitleDto, InsertGhra_TitleInput, EditGhra_TitleInput>, IGhra_TitleServices
{
private readonly IBaseRepository<Ghra_Title> _dal;
public Ghra_TitleServices(ICaching caching, IBaseRepository<Ghra_Title> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
public override async Task<Ghra_TitleDto> QueryById(object objId)
{
var entity = await base.QueryById(objId);
return entity;
}
}