doum
7 天以前 2b287056e2f59518888d05a1bbc7e5a55fbd84d5
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
package com.doumee.keyCabinet.http.param;
 
 
public class DevLoginParam {
    //【必传】设备编码",required = true)
    private String devCode;
    //类型(0:购票机,1:课消机)
    private String type="2";
 
    public String getDevCode() {
        return devCode;
    }
 
    public void setDevCode(String devCode) {
        this.devCode = devCode;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}