|
|
@@ -40,7 +40,11 @@ import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
import java.math.BigDecimal;
|
|
|
-import java.util.*;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
@@ -66,6 +70,11 @@ public class BaseNewStudentServiceImpl extends MPJBaseServiceImpl<BaseNewStudent
|
|
|
return this.baseMapper.getPage(page, dto);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<BaseNewStudentPageVo> getList(BaseNewStudentPageDto dto) {
|
|
|
+ return this.baseMapper.getList(dto);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public Page<BaseNewStudentPageVo> getReportPage(Page<BaseNewStudentPageVo> page, BaseNewStudentPageDto dto) {
|
|
|
return this.baseMapper.getReportPage(page, dto);
|