WelcomeAccountService.java 759 B

12345678910111213141516171819202122232425262728293031
  1. package com.template.services;
  2. import com.template.model.pojo.WelcomeAccount;
  3. import com.template.model.pojo.WelcomeAccount;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import com.template.model.result.PageUtils;
  6. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author ceshi
  12. * @since 2025-06-13
  13. */
  14. public interface WelcomeAccountService extends IService<WelcomeAccount> {
  15. int insertWelcomeAccount(WelcomeAccount rns);
  16. int updateWelcomeAccount(WelcomeAccount rns);
  17. PageUtils<WelcomeAccount> queryPageWelcomeAccounts(int currentPage, int pageCount, String parentCode, String keyword);
  18. int deleteWelcomeAccountById(String id);
  19. WelcomeAccount getManageById(String id);
  20. WelcomeAccount getDataByAccount(String account);
  21. }