The method implemented layer dao

@Override
public boolean checkPhone(String phone) {
String sql = "select username from user where phone=?";
List<Map<String, Object>> queryForList = DbUtil.queryForList(sql, phone);
if(queryForList.isEmpty(http://www.amjmh.com/v/BIBRGZ_558768/)){
return true;
}
return false;
}
————————————————

 

Guess you like

Origin www.cnblogs.com/hyhy904/p/11426866.html