package com.fdkankan.manage.service; import com.fdkankan.manage.vo.JyUserPlatform; import com.baomidou.mybatisplus.extension.service.IService; import com.fdkankan.manage.vo.request.JyUserPlatformAddParam; import com.fdkankan.manage.vo.request.JyUserPlatformParam; import java.util.HashMap; import java.util.List; /** *

* 服务类 *

* * @author * @since 2024-11-15 */ public interface IJyUserPlatformService extends IService { void del(JyUserPlatformAddParam param); Object pageList(JyUserPlatformParam param); Object queryByKey(JyUserPlatformParam param); void addByParam(JyUserPlatformAddParam param); void updateByParam(JyUserPlatformAddParam param); void bindPlatform(Integer id, Integer platformId); Integer addPlatformUser(List> excelRowList); Integer getLoginPlatformId(); }