public async Task DeleteAsync([FromBody] int[] ids)
 {
     if (ids != null && ids.Any())
     {
         await _settingService.DeleteByAsync(t => ids.Contains(t.Id));
     }
 }