WelcomeFamilyService.java 773 B

123456789101112131415161718192021222324252627282930
  1. package com.template.services;
  2. import com.template.model.pojo.WelcomeFamily;
  3. import com.template.model.pojo.WelcomeFamily;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import com.template.model.result.PageUtils;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * 服务类
  10. * </p>
  11. *
  12. * @author ceshi
  13. * @since 2025-06-13
  14. */
  15. public interface WelcomeFamilyService extends IService<WelcomeFamily> {
  16. int insertWelcomeFamily(WelcomeFamily rns);
  17. int updateWelcomeFamily(WelcomeFamily rns);
  18. PageUtils<WelcomeFamily> queryPageWelcomeFamilys(int currentPage, int pageCount, String parentCode, String keyword);
  19. int deleteWelcomeFamilyById(String id);
  20. WelcomeFamily getManageById(String id);
  21. List<WelcomeFamily> getManageByCardId(String cardId);
  22. }