|
@@ -173,6 +173,11 @@ public class ClueServiceImpl extends ServiceImpl<ClueMapper, Clue> implements Cl
|
|
return clueMapper.list1(clue, user.getId());
|
|
return clueMapper.list1(clue, user.getId());
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public List<Clue> getAllList1(Clue clue) {
|
|
|
|
+ return clueMapper.getAlllist1(clue);
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public List<Clue> getList2(Clue clue, User user) {
|
|
public List<Clue> getList2(Clue clue, User user) {
|
|
return clueMapper.list2(clue, user.getId());
|
|
return clueMapper.list2(clue, user.getId());
|
|
@@ -648,5 +653,16 @@ public class ClueServiceImpl extends ServiceImpl<ClueMapper, Clue> implements Cl
|
|
return excelExportService.exportGeneralExcelByTitleAndList(wxCorpInfo,fileName,dataList,path);
|
|
return excelExportService.exportGeneralExcelByTitleAndList(wxCorpInfo,fileName,dataList,path);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public List<Clue> getAllList(Clue clue) {
|
|
|
|
+ return clueMapper.getAllList(clue);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public List<Clue> getAllList2(Clue clue, User user) {
|
|
|
|
+ return clueMapper.getAllList2(clue);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|