|
|
@ -23,4 +23,18 @@ public class Ghrh_ResumeController : BaseController<IGhrh_ResumeServices, Ghrh_R |
|
|
|
public ServiceResult<List<ResumeViewTab>> QueryViewTab() => _service.QueryViewTab(); |
|
|
|
public ServiceResult<List<ResumeViewTab>> QueryViewTab() => _service.QueryViewTab(); |
|
|
|
|
|
|
|
|
|
|
|
#endregion |
|
|
|
#endregion |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 查询 |
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 根据条件查询数据 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
/// <param name="body">条件</param> |
|
|
|
|
|
|
|
/// <param name="status">status</param> |
|
|
|
|
|
|
|
/// <returns></returns> |
|
|
|
|
|
|
|
[HttpPost, Route("QueryList/{status}")] |
|
|
|
|
|
|
|
public async Task<ServicePageResult<Ghrh_ResumeDto>> QueryByStatus([FromBody] QueryBody body, string status) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return await _service.QueryFilterPage(body, $"Status ='{status}'"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
#endregion |
|
|
|
} |
|
|
|
} |