|
@@ -284,7 +284,7 @@ public class RoomBedServiceImpl extends MPJBaseServiceImpl<RoomBedMapper, RoomBe
|
|
|
List<StudentPayStatusVo> studentPayStatus = roomBedMapper.getStudentPayStatus(dto);
|
|
List<StudentPayStatusVo> studentPayStatus = roomBedMapper.getStudentPayStatus(dto);
|
|
|
Map<Long, Integer> payStatusMap = new HashMap<>();
|
|
Map<Long, Integer> payStatusMap = new HashMap<>();
|
|
|
for (StudentPayStatusVo payStatus : studentPayStatus) {
|
|
for (StudentPayStatusVo payStatus : studentPayStatus) {
|
|
|
- payStatusMap.put(payStatus.getId(), payStatus.getPayStatus());
|
|
|
|
|
|
|
+ payStatusMap.put(payStatus.getId(), (payStatus.getPayStatus() == null?0:payStatus.getPayStatus()));
|
|
|
}
|
|
}
|
|
|
for (String genderNumber : genderSet) {
|
|
for (String genderNumber : genderSet) {
|
|
|
//根据性别查询出所有空床位信息
|
|
//根据性别查询出所有空床位信息
|