@Override
 public HumanAbattoirPrestigeEntity convert(HumanAbattoirPrestige abattoirPrestige) {
   HumanAbattoirPrestigeEntity entity = new HumanAbattoirPrestigeEntity();
   entity.setId(abattoirPrestige.getHumanId());
   entity.setHonor(abattoirPrestige.getPrestige());
   entity.setLastExtractTime(abattoirPrestige.getLastExtractTime());
   return entity;
 }