| 1234567891011121314 |
- package com.keao.edu.user.service;
- import com.keao.edu.common.service.BaseService;
- import com.keao.edu.user.entity.ExamLocation;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface ExamLocationService extends BaseService<Integer, ExamLocation> {
- List<ExamLocation> getTenantAllLocations(@Param("tenantId") String tenantId);
- }
|