Runt
2022-03-01 cc5e1cbab3de2c497ffb12d4fc49dd331ba20a5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.auto.lyric.data;
 
/**
 * Created by Administrator on 2021/11/15 0015.
 */
public class ApkUpGradeResult extends BaseApiResult<ApkUpGradeResult.AppInfo>{
 
    public class AppInfo {
        //以下为声明的参数
        public int type, isEnable, isImportant, id, code;
        public String url,version, content, udate, remark;
 
 
        @Override
        public String toString() {
            return "ApkUpGrade{" +
                    "type=" + type + "," +
                    "isEnable=" + isEnable + "," +
                    "isImportant=" + isImportant + "," +
                    "id=" + id + "," +
                    "url=" + url + "," +
                    "version=" + version + "," +
                    "content=" + content + "," +
                    "udate=" + udate + "," +
                    '}';
        }
 
    }
}