AccessTokenService.java
734 Bytes
package com.meishu.service;
import com.meishu.dto.token.GetAllStudentsDTO;
import com.meishu.dto.token.GetAllTeachersDTO;
import com.meishu.model.AccessTokenDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.meishu.model.AdministerDO;
import com.meishu.model.UserRoleDO;
import com.meishu.vo.accesstoken.GetAllStudentsVO;
import com.meishu.vo.accesstoken.GetAllTeachersVO;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author Tuyp
* @since 2021-05-10
*/
public interface AccessTokenService extends IService<AccessTokenDO> {
List<GetAllTeachersVO> getAllTeachers(GetAllTeachersDTO getAllTeachersDTO);
List<GetAllStudentsVO> getAllStudents(GetAllStudentsDTO getAllStudentsDTO);
}