package com.template.services; import com.template.model.pojo.WelcomeAccompany; 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 WelcomeAccompanyService extends IService { int insertWelcomeAccompany(WelcomeAccompany rns); int updateWelcomeAccompany(WelcomeAccompany rns); PageUtils queryPageWelcomeAccompanys(int currentPage, int pageCount, String parentCode, String keyword); int deleteWelcomeAccompanyById(String id); WelcomeAccompany getManageById(String id); List getManageByCardId(String cardId); int deleteWelcomeAccompanyByCard(String cardId); }