潘志宝
8 天以前 6c2ff1c7c8e0aba3af92110b76687b78f8278e86
提交 | 用户 | 时间
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 }