/**
  * @param username
  * @return
  * @throws Exception
  */
 public int getAccountType(String username) throws Exception {
   clsMapperAccount mpa = new clsMapperAccount();
   clsAccount account = mpa.getAccountInfo(username);
   return account.getType();
 }