You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
841 B
Java
41 lines
841 B
Java
3 years ago
|
package com.manage.bean;
|
||
|
|
||
|
public class QRcode {
|
||
|
int loginTypeBitValue;
|
||
|
private int type;
|
||
|
private String projectUid;
|
||
|
private String applicationId;
|
||
|
|
||
|
public int getLoginTypeBitValue() {
|
||
|
return loginTypeBitValue;
|
||
|
}
|
||
|
|
||
|
public void setLoginTypeBitValue(int loginTypeBitValue) {
|
||
|
this.loginTypeBitValue = loginTypeBitValue;
|
||
|
}
|
||
|
|
||
|
public int getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public void setType(int type) {
|
||
|
this.type = type;
|
||
|
}
|
||
|
|
||
|
public String getProjectUid() {
|
||
|
return projectUid;
|
||
|
}
|
||
|
|
||
|
public void setProjectUid(String projectUid) {
|
||
|
this.projectUid = projectUid;
|
||
|
}
|
||
|
|
||
|
public String getApplicationId() {
|
||
|
return applicationId;
|
||
|
}
|
||
|
|
||
|
public void setApplicationId(String applicationId) {
|
||
|
this.applicationId = applicationId;
|
||
|
}
|
||
|
}
|