@@ -19,9 +19,13 @@ public class DownSceneDto {
public DownSceneDto(String url,Integer percent) {
this.status = 0;
- this.msg ="打包中。。。";
this.url = url;
this.percent = percent;
+ if(percent == 100){
+ this.msg ="下载成功";
+ }else {
+ this.msg ="打包中。。。";
+ }
}
public DownSceneDto(String url,Integer percent,Integer status) {