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