AuditMapper.java 633 Bytes
Newer Older
wzp's avatar
wzp committed
1 2
package cn.wisenergy.chnmuseum.party.mapper;

wzp's avatar
wzp committed
3
import cn.wisenergy.chnmuseum.party.model.TUser;
wzp's avatar
wzp committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import cn.wisenergy.chnmuseum.party.model.Audit;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
import org.springframework.data.querydsl.QPageRequest;

import java.util.List;

/**
 * <pre>
 * 学习内容信息 Mapper 接口
 * </pre>
 *
 * @author Danny Lee
 * @since 2021-03-26
 */
public interface AuditMapper extends BaseMapper<Audit> {

wzp's avatar
wzp committed
22
    List<Audit> getUserList(Page<Audit> page, @Param("user") TUser user);
wzp's avatar
wzp committed
23
}