WelcomeAccountService.java 945 B

123456789101112131415161718192021222324252627282930313233
  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. import com.template.model.vo.WelcomeAccountVo;
  7. /**
  8. * <p>
  9. * 服务类
  10. * </p>
  11. *
  12. * @author ceshi
  13. * @since 2025-06-13
  14. */
  15. public interface WelcomeAccountService extends IService<WelcomeAccount> {
  16. int insertWelcomeAccount(WelcomeAccount rns);
  17. int updateWelcomeAccount(WelcomeAccount rns);
  18. PageUtils<WelcomeAccount> queryPageWelcomeAccounts(int currentPage, int pageCount, String parentCode, String keyword);
  19. int deleteWelcomeAccountById(String id);
  20. WelcomeAccount getManageById(String id);
  21. WelcomeAccount getDataByAccount(String account);
  22. PageUtils<WelcomeAccountVo> listAccount(int currentPage, int pageCount,Integer status,String keyWord,String startTime,String endTime);
  23. }