New file |
| | |
| | | package com.ruoyi.account.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.account.api.model.AgentApplication; |
| | | import com.ruoyi.account.dto.AgentQuery; |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务类 |
| | | * </p> |
| | | * |
| | | * @author luodangjia |
| | | * @since 2024-11-21 |
| | | */ |
| | | public interface AgentApplicationService extends IService<AgentApplication> { |
| | | |
| | | void apply(AgentApplication agentApplication); |
| | | |
| | | IPage<AgentApplication> pageList(AgentQuery agentQuery); |
| | | } |