SmartUserService.java 613 B

1234567891011121314151617181920212223242526
  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. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author ceshi
  12. * @since 2023-12-04
  13. */
  14. public interface SmartUserService extends IService<SmartUser> {
  15. int insertSmartUser(SmartUser rns);
  16. int updateSmartUser(SmartUser rns);
  17. PageUtils<SmartUser> queryPageSmartUsers(int currentPage, int pageCount, String name);
  18. int deleteSmartUserById(int id);
  19. SmartUser getSmartById(int id);
  20. }