Jay
2024-11-25 ee9f604388a3e77d3f4654e326f3976552e7f532
提交 | 用户 | 时间
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
2f03e2 22     HttpApiEntity getFromCatch(String id);
23
c7f709 24     List<HttpApiEntity> list();
L 25 }