1234567891011121314151617181920212223242526 |
- package com.qmth.data.docking.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.qmth.data.docking.entity.YjxtKcxx;
- import java.util.List;
- /**
- * <p>
- * 课程信息表 服务类
- * </p>
- *
- * @author wangliang
- * @since 2025-06-09
- */
- public interface YjxtKcxxService extends IService<YjxtKcxx> {
- /**
- * 根据code和collegeName查找
- *
- * @param codeList
- * @param collegeNameList
- * @return
- */
- List<YjxtKcxx> findByCodeAndCollegeName(List<String> codeList, List<String> collegeNameList);
- }
|