1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.iailab.module.data.channel.http.collector;
|
| import lombok.AllArgsConstructor;
| import lombok.Getter;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2024年11月20日
| */
| @Getter
| @AllArgsConstructor
| public enum SourceApiEnum {
| iHyperDB("iHyperDB", "宝信IHD");
|
| private String code;
| private String desc;
| }
|
|