Commit b02e2b02 authored by Quxl's avatar Quxl

x

parent 4a518974
...@@ -92,9 +92,9 @@ public class PageServiceImpl implements PageService { ...@@ -92,9 +92,9 @@ public class PageServiceImpl implements PageService {
String sql = "SELECT BillBoardID = b.nBillboardID, MsgTypeID = b.sMsgTypeID,MsgType = b.sMsgType,Title = b.sTitle,Content = b.sText,Sort = b.nSort,TradeDate = b.dTradeDate" String sql = "SELECT BillBoardID = b.nBillboardID, MsgTypeID = b.sMsgTypeID,MsgType = b.sMsgType,Title = b.sTitle,Content = b.sText,Sort = b.nSort,TradeDate = b.dTradeDate"
+ " FROM tBillboard b " + " FROM tBillboard b "
+ " WHERE b.nTag&2=2 AND b.sMsgTypeID = ? "; + " WHERE b.nTag&2=2 AND b.sMsgTypeID = ? and b.sOrgNO = ?";
return jdbcTemplate.limit(sql, page, msgTypeID); return jdbcTemplate.limit(sql, page, msgTypeID, orgNO);
} }
......
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