public int queryGoodsTotalCount() {
//sql
String sql="select count(*) as num from t_shop_info";
//執行sql
try {
return ((Long)queryRunner.query(sql,new ScalarHandler())).intValue();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
return 0;
}