package com.ruoyi.common.utils.api.icc.config;
|
|
import lombok.Getter;
|
|
/**
|
* 平台信息配置
|
*/
|
@Getter
|
public class PlatformConfig {
|
|
private final String clientId = "NS-LIMS";//凭证ID自定义,配合申请凭证流程申请
|
private final String clientSecret = "3ca893c4-bfda-4d33-bd73-1eb5f3a68df1";//凭证密钥,参考此地址申请https://open-icc.dahuatech.com/iccdoc/enterprisebase/5.0.15/wiki/common/quickstart.html#%E7%94%B3%E8%AF%B7OpenAPI%E7%94%A8%E6%88%B7
|
private final String username = "NS-LIMS";//平台登录用户名
|
private final String password = "zttZTT123!";//平台登录密码
|
private final String host = "10.100.23.241";//平台IP,联调环境IP
|
private final String httpsPort = "443";//https默认端口是443,联调环境443映射外网端口为4077
|
private final String httpPort = "83";//http默认端口是83,但不开启,,联调环境83映射外网端口为4078;需运维中心开启http调试模式后才支持;isEnableHttpTest=true时有效,
|
private final Long connectionTimeout = -1L;//连接超时
|
private final Long readTimeout = -1L;//读取超时
|
}
|