提交 | 用户 | 时间
|
c7f709
|
1 |
package com.iailab.module.data.channel.http.service; |
L |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.module.data.channel.http.entity.HttpApiEntity; |
|
5 |
import com.iailab.module.data.channel.http.vo.HttpApiPageReqVO; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
|
|
9 |
public interface HttpApiService{ |
|
10 |
PageResult<HttpApiEntity> queryPage(HttpApiPageReqVO reqVO); |
|
11 |
|
|
12 |
HttpApiEntity info(String id); |
|
13 |
|
|
14 |
void add(HttpApiEntity httpApiEntity); |
|
15 |
|
|
16 |
void update(HttpApiEntity httpApiEntity); |
|
17 |
|
|
18 |
void delete(String id); |
|
19 |
|
|
20 |
HttpApiEntity getByCode(String code); |
|
21 |
|
|
22 |
List<HttpApiEntity> list(); |
|
23 |
} |