package com.fdkankan.manage.service; import com.fdkankan.manage.entity.JyPlatform; import com.baomidou.mybatisplus.extension.service.IService; import com.fdkankan.manage.vo.request.JyPlatformParam; import com.fdkankan.manage.vo.request.JyPlatformVo; import java.util.List; /** *

* 服务类 *

* * @author * @since 2024-11-14 */ public interface IJyPlatformService extends IService { Object pageList(JyPlatformParam param); JyPlatform addOrUpdate(JyPlatformVo param); void del(JyPlatform param); Object getByAddress(String address); void enable(JyPlatformVo param); void disable(JyPlatformVo param); List getIds(); JyPlatform getByIdCard(String idCard); }