Commit edfbbd0f authored by Quxl's avatar Quxl

x

parent 0f180cda
......@@ -478,7 +478,7 @@ public class UserServiceImpl implements UserService {
map.put("sCertifType", sCertifType);
map.put("sCertifNO", sCertifNO);
List<Map<String, Object>> certifPicList = jdbcTemplate.queryForList("select TOP 1 * from tShopCertifPic where sCertifNO = ? and sCertifTypeID = ? and sShopNO = ? order by nItem desc", sCertifNO, sCertifTypeID, shopNo);
List<Map<String, Object>> certifPicList = jdbcTemplate.queryForList("select TOP 1 * from tShopCertifPic where sCertifTypeID = ? and sShopNO = ? order by nItem desc", sCertifTypeID, shopNo);
if(certifPicList.size() > 0) {
Map<String, Object> picMap = certifPicList.get(0);
String sURL = (String)picMap.get("sURL");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment