Commit e99ca886 by zhuht

[chg]百货:查询人员接待记录时去掉mall_id条件;

1 parent 69457cc5
......@@ -27,7 +27,7 @@ public class DPersonReceptionDao {
public List<DPersonReception> getPersonReceptionList(Long mallId, Date countDate, String personUnid, Date startTime, Date endTime) {
startTime = DateUtil.offsetMinute(startTime, -5);
endTime = DateUtil.offsetMinute(endTime, 5);
String sql = "select * from d_person_reception where mall_id = ? and count_date = ? and person_unid = ? and start_time >= ? and end_time <= ? order by start_time;";
return jdbcTemplate.query(sql, new BeanPropertyRowMapper<>(DPersonReception.class), mallId, countDate, personUnid, startTime, endTime);
String sql = "select * from d_person_reception where count_date = ? and person_unid = ? and start_time >= ? and end_time <= ? order by start_time;";
return jdbcTemplate.query(sql, new BeanPropertyRowMapper<>(DPersonReception.class), countDate, personUnid, startTime, endTime);
}
}
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!