16 lines
335 B
Java
16 lines
335 B
Java
|
|
package com.wecom.robot.config;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
|
import org.springframework.stereotype.Component;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@Component
|
||
|
|
@ConfigurationProperties(prefix = "ai-service")
|
||
|
|
public class AiServiceConfig {
|
||
|
|
|
||
|
|
private String url;
|
||
|
|
|
||
|
|
private int timeout = 5000;
|
||
|
|
}
|