Blame view

AccessTokenService.java 734 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
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);
}