package com.template.services; import com.template.model.pojo.WelcomeFamily; import com.template.model.pojo.WelcomeFamily; import com.baomidou.mybatisplus.extension.service.IService; import com.template.model.result.PageUtils; import java.util.List; /** *

* 服务类 *

* * @author ceshi * @since 2025-06-13 */ public interface WelcomeFamilyService extends IService { int insertWelcomeFamily(WelcomeFamily rns); int updateWelcomeFamily(WelcomeFamily rns); PageUtils queryPageWelcomeFamilys(int currentPage, int pageCount, String parentCode, String keyword); int deleteWelcomeFamilyById(String id); WelcomeFamily getManageById(String id); List getManageByCardId(String cardId); int deleteWelcomeFamilyByCard(String cardId); }