| | |
| | | log.info("step 1 ======>> {}", sql); |
| | | sql = "select * from OutStockbillEntry where 1=1 and Fnumber = ''{0}'' and FInterID = {1,number,#}"; |
| | | sql = MessageFormat.format(sql, Fnumber, FInterID); |
| | | List<OutStockBillEntry> select = jdbcTemplate.queryForList(sql, OutStockBillEntry.class); |
| | | List<OutStockBillEntry> select = this.selectList(new EntityWrapper<OutStockBillEntry>().eq("Fnumber", Fnumber).eq("FInterID", FInterID)); |
| | | log.info("step 2 ======>> {}", sql); |
| | | OutStockBillEntry outStockBillEntry = select.get(0); |
| | | boolean complete = false; |