| 123456789101112131415161718192021222324252627282930 |
- 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;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author ceshi
- * @since 2025-06-13
- */
- public interface WelcomeFamilyService extends IService<WelcomeFamily> {
- int insertWelcomeFamily(WelcomeFamily rns);
- int updateWelcomeFamily(WelcomeFamily rns);
- PageUtils<WelcomeFamily> queryPageWelcomeFamilys(int currentPage, int pageCount, String parentCode, String keyword);
- int deleteWelcomeFamilyById(String id);
- WelcomeFamily getManageById(String id);
- List<WelcomeFamily> getManageByCardId(String cardId);
- }
|