潘志宝
2024-09-12 ac6fb5406fccf2d9a0e39ae5e299c7fa207978da
提交 | 用户 | 时间
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 selectXstHttpTagApi();
21
22     HttpApiEntity getByCode(String code);
23
24     List<HttpApiEntity> list();
25 }