SmartUserMapper.java 529 B

12345678910111213141516171819202122
  1. package com.template.mapper;
  2. import com.template.model.pojo.SmartUser;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.template.model.vo.AffiliateUserVo;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Repository;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * Mapper 接口
  11. * </p>
  12. *
  13. * @author ceshi
  14. * @since 2023-12-04
  15. */
  16. @Repository
  17. public interface SmartUserMapper extends BaseMapper<SmartUser> {
  18. List<AffiliateUserVo> queryAffiliateUserById(@Param("id") Integer id);
  19. }