version:4.2
fix: update:优化联系人列表
This commit is contained in:
53
app/src/main/java/com/uiui/aios/bean/EmergencyContact.java
Normal file
53
app/src/main/java/com/uiui/aios/bean/EmergencyContact.java
Normal file
@@ -0,0 +1,53 @@
|
||||
package com.uiui.aios.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EmergencyContact implements Serializable {
|
||||
private static final long serialVersionUID = 3368451934517980000L;
|
||||
|
||||
String avatar;
|
||||
String name;
|
||||
String mobile;
|
||||
int is_urgent;
|
||||
boolean show;
|
||||
|
||||
public String getAvatar() {
|
||||
return avatar;
|
||||
}
|
||||
|
||||
public void setAvatar(String avatar) {
|
||||
this.avatar = avatar;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getMobile() {
|
||||
return mobile;
|
||||
}
|
||||
|
||||
public void setMobile(String mobile) {
|
||||
this.mobile = mobile;
|
||||
}
|
||||
|
||||
public int getIs_urgent() {
|
||||
return is_urgent;
|
||||
}
|
||||
|
||||
public void setIs_urgent(int is_urgent) {
|
||||
this.is_urgent = is_urgent;
|
||||
}
|
||||
|
||||
public boolean isShow() {
|
||||
return show;
|
||||
}
|
||||
|
||||
public void setShow(boolean show) {
|
||||
this.show = show;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user