Blame view

CollectInfoMapper.java 483 Bytes
涂亚平 committed
1 2 3 4 5
package com.subsidy.mapper;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.subsidy.model.CollectInfoDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
涂亚平 committed
6
import com.subsidy.vo.InfoVO;
涂亚平 committed
7 8 9 10 11 12 13 14 15 16 17 18 19
import org.springframework.stereotype.Repository;

/**
 * <p>
 * 首页手机信息 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2024-11-02
 */
@Repository
public interface CollectInfoMapper extends BaseMapper<CollectInfoDO> {

涂亚平 committed
20
    IPage<InfoVO > info(IPage iPage);
涂亚平 committed
21 22

}