|
@@ -773,15 +773,6 @@ public class StudentServiceImpl extends ServiceImpl<StudentDao, StudentEntity> i
|
|
|
return PageUtil.of(iPage);
|
|
|
}
|
|
|
|
|
|
- @Transactional
|
|
|
- @Override
|
|
|
- public void updateDataUploadStatus(@NotNull Long id, @NotNull UploadStatus status) {
|
|
|
- LambdaUpdateWrapper<StudentEntity> lw = new LambdaUpdateWrapper<>();
|
|
|
- lw.set(StudentEntity::getDataUploadStatus, status);
|
|
|
- lw.eq(StudentEntity::getId, id);
|
|
|
- update(lw);
|
|
|
- }
|
|
|
-
|
|
|
@Transactional
|
|
|
@Override
|
|
|
public void updateFileUploadStatus(@NotNull Long id, @NotNull UploadStatus status) {
|
|
@@ -791,17 +782,6 @@ public class StudentServiceImpl extends ServiceImpl<StudentDao, StudentEntity> i
|
|
|
update(lw);
|
|
|
}
|
|
|
|
|
|
- @Transactional
|
|
|
- @Override
|
|
|
- public void updateUploadStatus(@NotNull Long id, @NotNull UploadStatus fileUploadStatus,
|
|
|
- @NotNull UploadStatus dataUploadStatus) {
|
|
|
- LambdaUpdateWrapper<StudentEntity> lw = new LambdaUpdateWrapper<>();
|
|
|
- lw.set(StudentEntity::getDataUploadStatus, dataUploadStatus);
|
|
|
- lw.set(StudentEntity::getFileUploadStatus, fileUploadStatus);
|
|
|
- lw.eq(StudentEntity::getId, id);
|
|
|
- update(lw);
|
|
|
- }
|
|
|
-
|
|
|
@Transactional
|
|
|
@Override
|
|
|
public void updateOmrAbsent(@NotNull Long id, @NotNull Boolean omrAbsent) {
|