예제 #1
0
 public UserInfoPO(UserInfoVO userInfoVO) {
   this(
       userInfoVO.getID(),
       userInfoVO.getGender(),
       userInfoVO.getScore(),
       userInfoVO.getMoney(),
       userInfoVO.getRank());
 }
예제 #2
0
 public int updateRank() {
   this.rank = UserInfoVO.computeRank(this.score);
   return this.rank;
 }