|
@ -103,7 +103,7 @@ public class PatientRemindService extends BaseService {
|
|
|
" limit ?,3000";
|
|
|
|
|
|
while (flag) {
|
|
|
List<Patient> result = jdbcTemplate.query(sql,new Object[]{doc.getCode(), doc.getCode(), start}, new BeanPropertyRowMapper<Patient>());
|
|
|
List<Patient> result = jdbcTemplate.query(sql,new Object[]{doc.getCode(), doc.getCode(), start}, new BeanPropertyRowMapper(Patient.class));
|
|
|
|
|
|
if (result != null && result.size() > 0) {
|
|
|
for (Patient p : result) {
|