新增 后管上传蓝牙升级程序接口

This commit is contained in:
Lemon
2024-11-21 15:50:43 +08:00
parent 52f2043c9c
commit e1020b4e48
10 changed files with 58 additions and 15 deletions

View File

@@ -37,6 +37,11 @@ public class AliyunOssConfig {
*/
private String bluetoothFileHost;
/**
* 访问域名(上传蓝牙固件时用)
*/
private String interviewUrl;
/**
* 访问域名
*/
@@ -90,6 +95,14 @@ public class AliyunOssConfig {
this.bluetoothFileHost = bluetoothFileHost;
}
public String getInterviewUrl() {
return interviewUrl;
}
public void setInterviewUrl(String interviewUrl) {
this.interviewUrl = interviewUrl;
}
public String getUrl() {
return url;
}
@@ -107,6 +120,7 @@ public class AliyunOssConfig {
.append("bucketName", bucketName)
.append("filehost", filehost)
.append("bluetoothFileHost", bluetoothFileHost)
.append("interviewUrl", interviewUrl)
.append("url", url)
.toString();
}