作者 朱兆平

存储报文内容BUG

... ... @@ -69,7 +69,7 @@ public class DaoImpl implements Dao {
conn = this.jdbcTemplate.getDataSource().getConnection();
conn.setAutoCommit(false);
stmt = conn.createStatement();
String SQL = "select CONTENT from T_ETL_MESSAGE where FID=" + fid + " and SNDR='FIMS' for update";
String SQL = "select CONTENT from T_ETL_MESSAGE where FID=" + fid + " for update";
rs = stmt.executeQuery(SQL);
while(rs.next()) {
... ...