审查视图

src/main/java/login/InterfaceData.java 573 字节
fujinghui authored
1 2 3 4 5 6 7
package login;

public class InterfaceData {
	private String key;
	private String username;
	private String pwd;
	private String type;
8
fujinghui authored
9 10 11
	public String getKey() {
		return key;
	}
12
fujinghui authored
13 14 15
	public void setKey(String key) {
		this.key = key;
	}
16
fujinghui authored
17 18 19
	public String getUsername() {
		return username;
	}
20
fujinghui authored
21 22 23
	public void setUsername(String username) {
		this.username = username;
	}
24
fujinghui authored
25 26 27
	public String getPwd() {
		return pwd;
	}
28
fujinghui authored
29 30 31
	public void setPwd(String pwd) {
		this.pwd = pwd;
	}
32
fujinghui authored
33 34 35
	public String getType() {
		return type;
	}
36
fujinghui authored
37 38 39 40
	public void setType(String type) {
		this.type = type;
	}
}