namespace Tiobon.Core.Api.Controllers; /// /// 录用审批单(Controller) /// [Route("api/[controller]")] [ApiController, GlobalActionFilter] [Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)] public class Ghrh_OfferApplyOrderController : BaseController { public Ghrh_OfferApplyOrderController(IGhrh_OfferApplyOrderServices service) : base(service) { } #region 查询简历 /// /// 查询简历 /// /// 简历ID /// [HttpPost, Route("QueryResume/{id}")] public async Task> QueryResume(long id) => await _service.QueryResume(id); #endregion #region 临时新增 /// /// 临时新增 /// /// 简历ID /// 简历ID /// [HttpPost, Route("TempAdd/{resumeId}")] public async Task> TempAdd(long resumeId, InsertGhrh_OfferApplyOrderInput entity) => await _service.TempAdd(resumeId, entity); #endregion }