Commit 2104c77d by sikang

http 2 https

parent 8f30e41c
......@@ -10,7 +10,7 @@ public class ActivityInfoBean implements Serializable{
private String detailUrl;
public String getUrl() {
return url;
return url.replace("http://", "https://");
}
public void setUrl(String url) {
......
......@@ -109,7 +109,7 @@ public class EmploymentServerBean implements Serializable {
}
public String getWorkCardUrl() {
return workCardUrl;
return workCardUrl.replace("http://", "https://");
}
public void setWorkCardUrl(String workCardUrl) {
......
......@@ -31,7 +31,7 @@ public class PhotoListBean implements Serializable {
}
public String getUrl() {
return url;
return url.replace("http://", "https://");
}
public void setUrl(String url) {
......
......@@ -36,7 +36,7 @@ public class RecordFilesResponse implements Serializable {
}
public String getUrl() {
return url;
return url.replace("http://", "https://");
}
public void setUrl(String url) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment