| 12345678910111213141516171819202122232425262728293031 |
- 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;
- /**
- * <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);
- }
|