|
@@ -124,7 +124,7 @@ public class HousePriceServiceImpl implements HousePriceService {
|
|
|
@Override
|
|
@Override
|
|
|
public List<House> queryHouseListByManagerId(String managerId) {
|
|
public List<House> queryHouseListByManagerId(String managerId) {
|
|
|
if (StringUtils.isBlank(managerId)) return Collections.emptyList();
|
|
if (StringUtils.isBlank(managerId)) return Collections.emptyList();
|
|
|
- String sqlx = String.format(" and manager_id = %s %s", managerId, " order by create_date desc");
|
|
|
|
|
|
|
+ String sqlx = String.format(" and manager_id = %s %s", managerId, " order by id desc");
|
|
|
return houseDao.queryList(sqlx);
|
|
return houseDao.queryList(sqlx);
|
|
|
}
|
|
}
|
|
|
|
|
|