Administrator
12 hours ago 1cef93fa4d965877d2de2b1d83b1891061dfa6a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cc.mrbird.febs.ai.enumerates;
 
import lombok.Getter;
 
/**
 * @author Administrator
 */
 
@Getter
public enum AiCommonEnum {
 
    COMPANY_ID("默认公司ID","ffe95f179c3b48889f86282969a4253c"),
 
    SHARE_DESCRIBE("SHARE_DESCRIBE","描述"),
 
    SHARE_TITLE("SHARE_TITLE","标题"),
 
    SHARE_LOGO("SHARE_LOGO","分享LOGO");
 
    private final String code;
    private final String prompt;
 
    AiCommonEnum(String code, String prompt) {
 
        this.code = code;
        this.prompt = prompt;
    }
}