| 12345678910111213141516171819202122 |
- package com.template.mapper;
- import com.template.model.pojo.SmartUser;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.template.model.vo.AffiliateUserVo;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author ceshi
- * @since 2023-12-04
- */
- @Repository
- public interface SmartUserMapper extends BaseMapper<SmartUser> {
- List<AffiliateUserVo> queryAffiliateUserById(@Param("id") Integer id);
- }
|