1234567891011121314151617181920212223242526272829303132333435363738 |
- 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;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2024-11-15
- */
- public interface IJyUserPlatformService extends IService<JyUserPlatform> {
- 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<HashMap<Integer, String>> excelRowList);
- Integer getLoginPlatformId();
- }
|