|
|
|
|
@ -1229,11 +1229,13 @@ namespace _24Hour.Controllers.Common
|
|
|
|
|
_db.CommitTran(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
result.IsSucceed = true; |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
[HttpPost] |
|
|
|
|
[Route("ExportLawyerArchivesInfo")] |
|
|
|
|
public async Task<Result> ExportLawyerArchivesInfo(IEnumerable<string> ids) |
|
|
|
|
public async Task<Result> ExportLawyerArchivesInfo(List<string> ids) |
|
|
|
|
{ |
|
|
|
|
var lawyerarchives = await _db.Queryable<App_LawyerServicesModel>() |
|
|
|
|
.In(info => info.Id, ids) |
|
|
|
|
|