Commit 89949dc7 authored by Quxl's avatar Quxl

x

parent 0e337a69
......@@ -210,7 +210,7 @@ public class BrandServiceImpl implements BrandService {
@Override
public List<Map<String, Object>> queryAuthorizationIPList(String custNo, String orgNo) {
String sql = "select b.* from tIPBrand b, tIPBrandAuthorize ba where b.sOrgNO = ? and b.nTag&1 = 0 and b.sIPID = ba.sIPID and ba.nTag&1 = 0 and ba.sCustNO = ?";
String sql = "select b.*, ba.nTag, ba.nAuthorizeID from tIPBrand b, tIPBrandAuthorize ba where b.sOrgNO = ? and b.nTag&1 = 0 and b.sIPID = ba.sIPID and ba.nTag&1 = 0 and ba.sCustNO = ?";
return jdbcTemplate.queryForList(sql, orgNo, custNo);
}
......
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