|
@@ -85,22 +85,22 @@ public class SystemConfig {
|
|
|
|
|
|
public String getThumbUrl(Long workId, Integer subjectId, Long studentId, Integer imageType) {
|
|
|
return imageServerConfig.getImageServer() + path + workId + "/"
|
|
|
- + subjectId + "/" + studentId + "/" + imageType;
|
|
|
+ + subjectId + "/" + studentId + "/" + imageType + "?random=" + UUID.randomUUID().toString();
|
|
|
}
|
|
|
|
|
|
public String getImageUrl(Long workId, Integer subjectId, Long studentId, Integer imageType) {
|
|
|
return imageServerConfig.getImageServer() + path + workId + "/"
|
|
|
- + subjectId + "/" + studentId + "/" + imageType;
|
|
|
+ + subjectId + "/" + studentId + "/" + imageType + "?random=" + UUID.randomUUID().toString();
|
|
|
}
|
|
|
|
|
|
public String getSheetUrl(Long workId, Integer subjectId, Long studentId, Integer imageType) {
|
|
|
return imageServerConfig.getImageServer() + path + workId + "/"
|
|
|
- + subjectId + "/" + studentId + "/" + imageType;
|
|
|
+ + subjectId + "/" + studentId + "/" + imageType + "?random=" + UUID.randomUUID().toString();
|
|
|
}
|
|
|
|
|
|
public String getWaterMarkUrl(Long workId, Integer subjectId, Long studentId, Integer imageType) {
|
|
|
return imageServerConfig.getImageServer() + path + workId + "/"
|
|
|
- + subjectId + "/" + studentId + "/" + imageType;
|
|
|
+ + subjectId + "/" + studentId + "/" + imageType + "?random=" + UUID.randomUUID().toString();
|
|
|
}
|
|
|
|
|
|
public String getSheetDir() {
|