| 123456789101112131415161718192021222324252627282930313233 |
- package com.template.services;
- import com.template.model.pojo.WelcomeAccount;
- import com.template.model.pojo.WelcomeAccount;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.template.model.result.PageUtils;
- import com.template.model.vo.WelcomeAccountVo;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author ceshi
- * @since 2025-06-13
- */
- public interface WelcomeAccountService extends IService<WelcomeAccount> {
- int insertWelcomeAccount(WelcomeAccount rns);
- int updateWelcomeAccount(WelcomeAccount rns);
- PageUtils<WelcomeAccount> queryPageWelcomeAccounts(int currentPage, int pageCount, String parentCode, String keyword);
- int deleteWelcomeAccountById(String id);
- WelcomeAccount getManageById(String id);
- WelcomeAccount getDataByAccount(String account);
- PageUtils<WelcomeAccountVo> listAccount(int currentPage, int pageCount,Integer status,String keyWord,String startTime,String endTime);
- }
|