|
|
@@ -5,6 +5,7 @@ import java.util.Map;
|
|
|
import com.jpsoft.employment.modules.base.entity.StudentAspirations;
|
|
|
import com.github.pagehelper.Page;
|
|
|
import com.jpsoft.employment.modules.common.dto.Sort;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
public interface StudentAspirationsService {
|
|
|
StudentAspirations get(String id);
|
|
|
@@ -14,6 +15,6 @@ public interface StudentAspirationsService {
|
|
|
int delete(String id);
|
|
|
List<StudentAspirations> list();
|
|
|
Page<StudentAspirations> pageSearch(Map<String, Object> searchParams, int pageNum, int pageSize, boolean count, List<Sort> sortList);
|
|
|
- List<StudentAspirations> findByWish(String wishInfoId);
|
|
|
+ List<StudentAspirations> findByWish(String wishInfoId, Boolean swapped);
|
|
|
List<StudentAspirations> listByWishInfo(String wishInfoId);
|
|
|
}
|