StudentMapper.java
454 Bytes
package com.meishu.mapper;
import com.meishu.model.StudentDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* <p>
* 学生表 Mapper 接口
* </p>
*
* @author Tuyp
* @since 2023-07-11
*/
@Repository
public interface StudentMapper extends BaseMapper<StudentDO> {
List<StudentDO> students(String userName);
}