Blame view

MemberMapper.java 575 Bytes
涂亚平 committed
1 2
package com.subsidy.mapper;

涂亚平 committed
3
import com.baomidou.mybatisplus.core.metadata.IPage;
涂亚平 committed
4 5
import com.subsidy.model.MemberDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
涂亚平 committed
6
import com.subsidy.vo.member.AcademyMembersVO;
涂亚平 committed
7 8
import org.springframework.stereotype.Repository;

涂亚平 committed
9 10
import java.util.List;

涂亚平 committed
11 12 13 14 15 16 17 18
/**
 * <p>
 * 学生表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2024-01-11
 */
涂亚平 committed
19
@Repository
涂亚平 committed
20 21
public interface MemberMapper extends BaseMapper<MemberDO> {

涂亚平 committed
22 23
    IPage<AcademyMembersVO> academyMembers(IPage iPage, String userName, String practiceStatus, Long academyId);

涂亚平 committed
24
}