/**
  * @param user
  * @return
  * @throws Exception
  */
 public boolean checkLogin(String user) throws Exception {
   clsMapperAccount mpa = new clsMapperAccount();
   return mpa.AccountCheckLogin(user);
 }