IJyUserPlatformService.java 886 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.fdkankan.manage.service;
  2. import com.fdkankan.manage.vo.JyUserPlatform;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.fdkankan.manage.vo.request.JyUserPlatformAddParam;
  5. import com.fdkankan.manage.vo.request.JyUserPlatformParam;
  6. import java.util.HashMap;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * 服务类
  11. * </p>
  12. *
  13. * @author
  14. * @since 2024-11-15
  15. */
  16. public interface IJyUserPlatformService extends IService<JyUserPlatform> {
  17. void del(JyUserPlatformAddParam param);
  18. Object pageList(JyUserPlatformParam param);
  19. Object queryByKey(JyUserPlatformParam param);
  20. void addByParam(JyUserPlatformAddParam param);
  21. void updateByParam(JyUserPlatformAddParam param);
  22. void bindPlatform(Integer id, Integer platformId);
  23. Integer addPlatformUser(List<HashMap<Integer, String>> excelRowList);
  24. Integer getLoginPlatformId();
  25. }