liriming
2024-08-27 c7f70933adf89a163d0049c907492a6df60cb45f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.iailab.module.data.channel.http.service;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.module.data.channel.http.entity.HttpApiEntity;
import com.iailab.module.data.channel.http.vo.HttpApiPageReqVO;
 
import java.util.List;
 
public interface HttpApiService{
    PageResult<HttpApiEntity> queryPage(HttpApiPageReqVO reqVO);
 
    HttpApiEntity info(String id);
 
    void add(HttpApiEntity httpApiEntity);
 
    void update(HttpApiEntity httpApiEntity);
 
    void delete(String id);
 
    HttpApiEntity selectXstHttpTagApi();
 
    HttpApiEntity getByCode(String code);
 
    List<HttpApiEntity> list();
}