SmartUserService.java 803 B

1234567891011121314151617181920212223242526272829303132
  1. package com.template.services;
  2. import com.template.model.pojo.SmartUser;
  3. import com.template.model.pojo.SmartUser;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import com.template.model.result.PageUtils;
  6. import com.template.model.vo.AffiliateUserVo;
  7. import org.apache.ibatis.annotations.Param;
  8. import java.util.List;
  9. /**
  10. * <p>
  11. * 服务类
  12. * </p>
  13. *
  14. * @author ceshi
  15. * @since 2023-12-04
  16. */
  17. public interface SmartUserService extends IService<SmartUser> {
  18. int insertSmartUser(SmartUser rns);
  19. int updateSmartUser(SmartUser rns);
  20. PageUtils<SmartUser> queryPageSmartUsers(int currentPage, int pageCount, String name);
  21. int deleteSmartUserById(int id);
  22. SmartUser getSmartById(int id);
  23. List<AffiliateUserVo> queryAffiliateUserById(@Param("id") Integer id);
  24. }