/// <summary>
 /// 批量删除 根据主键
 /// </summary>
 /// <param name="deleteBatchModel"></param>
 /// <returns></returns>
 public async Task <HttpResponseResultModel <bool> > DeleteBatchAsync(DeleteBatchModel <long> deleteBatchModel)
 {
     return(await repository.DeleteBatchAsync(deleteBatchModel).ConfigureAwait(false));
 }