@Override
 public List<Weight> getWeightsByPage(ServiceContext context, JPagination pagination) {
   return weightMapper.getWeightsByPage(pagination);
 }
 @Override
 public List<Weight> getWeightByName(ServiceContext context, String userName) {
   return weightMapper.getWeightByName(userName);
 }