|
|
@@ -1,5 +1,6 @@
|
|
|
package com.xjrsoft.module.textbook.service.impl;
|
|
|
|
|
|
+import com.xjrsoft.module.textbook.dto.CanReturnTextbookListDto;
|
|
|
import com.xjrsoft.module.textbook.dto.TextbookClaimRecordExportDto;
|
|
|
import com.xjrsoft.module.textbook.service.ITextbookIssueRecordService;
|
|
|
import com.xjrsoft.module.textbook.service.ITextbookService;
|
|
|
@@ -21,4 +22,13 @@ class TextbookIssueRecordServiceImplTest {
|
|
|
void claimRecordExportDataQuery() throws IOException {
|
|
|
textbookIssueRecordService.claimRecordExportDataQuery(new TextbookClaimRecordExportDto());
|
|
|
}
|
|
|
+
|
|
|
+ @Test
|
|
|
+ void canReturnTextbookList() {
|
|
|
+ textbookIssueRecordService.canReturnTextbookList(new CanReturnTextbookListDto(){{
|
|
|
+ setApplicantUserId("654321987654918");
|
|
|
+ setRecordType(0);
|
|
|
+ setBaseSemesterId("1868532124600545280");
|
|
|
+ }});
|
|
|
+ }
|
|
|
}
|