rk
昨天 4a8ff39b0fab0627ef8f7459587d514cc01c3676
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
package com.doumee.keyCabinet.http.param;
 
 
//app-版本校验请求")
public class DevAppVersionParam {
    //app版本号")
    private int versionCode;
    //app类型(0:自助售票机,1:PAD手持机,2:课消机,3:收银台)
    private String type;
 
    public int getVersionCode() {
        return versionCode;
    }
 
    public void setVersionCode(int versionCode) {
        this.versionCode = versionCode;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}