@Override
 public HumanAbattoirPrestige reverseConvert(HumanAbattoirPrestigeEntity prestigeEntity) {
   HumanAbattoirPrestige abattoirPrestige = new HumanAbattoirPrestige();
   abattoirPrestige.setHumanId((Long) prestigeEntity.getId());
   abattoirPrestige.setPrestige(prestigeEntity.getHonor());
   abattoirPrestige.setLastExtractTime(prestigeEntity.getLastExtractTime());
   return abattoirPrestige;
 }