1234567891011121314151617181920212223242526272829303132333435 |
- 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;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2024-11-14
- */
- public interface IJyPlatformService extends IService<JyPlatform> {
- 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<String> getIds();
- JyPlatform getByIdCard(String idCard);
- }
|