version:1.9.1
fix: update:个人信息页面完善
This commit is contained in:
17
app/src/main/java/com/uiui/zyos/bean/PhraseContent.java
Normal file
17
app/src/main/java/com/uiui/zyos/bean/PhraseContent.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.uiui.zyos.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class PhraseContent implements Serializable {
|
||||
private static final long serialVersionUID = -3136093792143273374L;
|
||||
|
||||
String content;
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
}
|
||||
@@ -10,27 +10,17 @@ import java.io.Serializable;
|
||||
public class SnInfo implements Serializable {
|
||||
private static final long serialVersionUID = -5268233433601073239L;
|
||||
|
||||
int id;
|
||||
String sn_value;
|
||||
int is_log;
|
||||
int is_log_type;
|
||||
int sex;
|
||||
int age;
|
||||
String height;
|
||||
String weight;
|
||||
int sex;//1 男 2 女 0 默认
|
||||
String devices_version;
|
||||
String sn_name;
|
||||
String school;
|
||||
String is_lock;
|
||||
String is_reset;
|
||||
String grade;
|
||||
int admin_id;
|
||||
String mobile;
|
||||
String avatar;
|
||||
long binding_time;
|
||||
long study_time;
|
||||
String study_time_ranking;
|
||||
|
||||
String class_name;
|
||||
/*
|
||||
*3 商用——企业用户
|
||||
4 C端——老人用户
|
||||
@@ -41,14 +31,11 @@ public class SnInfo implements Serializable {
|
||||
*
|
||||
* */
|
||||
int type_id;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
String mobile;
|
||||
String avatar;
|
||||
long binding_time;
|
||||
long study_time;
|
||||
int study_time_ranking;
|
||||
|
||||
public String getSn_value() {
|
||||
return sn_value;
|
||||
@@ -82,30 +69,6 @@ public class SnInfo implements Serializable {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public int getAge() {
|
||||
return age;
|
||||
}
|
||||
|
||||
public void setAge(int age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
public String getHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
public void setHeight(String height) {
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public String getWeight() {
|
||||
return weight;
|
||||
}
|
||||
|
||||
public void setWeight(String weight) {
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public String getDevices_version() {
|
||||
return devices_version;
|
||||
}
|
||||
@@ -154,12 +117,20 @@ public class SnInfo implements Serializable {
|
||||
this.grade = grade;
|
||||
}
|
||||
|
||||
public int getAdmin_id() {
|
||||
return admin_id;
|
||||
public String getClass_name() {
|
||||
return class_name;
|
||||
}
|
||||
|
||||
public void setAdmin_id(int admin_id) {
|
||||
this.admin_id = admin_id;
|
||||
public void setClass_name(String class_name) {
|
||||
this.class_name = class_name;
|
||||
}
|
||||
|
||||
public int getType_id() {
|
||||
return type_id;
|
||||
}
|
||||
|
||||
public void setType_id(int type_id) {
|
||||
this.type_id = type_id;
|
||||
}
|
||||
|
||||
public String getMobile() {
|
||||
@@ -186,15 +157,7 @@ public class SnInfo implements Serializable {
|
||||
this.binding_time = binding_time;
|
||||
}
|
||||
|
||||
public int getType_id() {
|
||||
return type_id;
|
||||
}
|
||||
|
||||
public void setType_id(int type_id) {
|
||||
this.type_id = type_id;
|
||||
}
|
||||
|
||||
public Long getStudy_time() {
|
||||
public long getStudy_time() {
|
||||
return study_time;
|
||||
}
|
||||
|
||||
@@ -202,11 +165,11 @@ public class SnInfo implements Serializable {
|
||||
this.study_time = study_time;
|
||||
}
|
||||
|
||||
public String getStudy_time_ranking() {
|
||||
public int getStudy_time_ranking() {
|
||||
return study_time_ranking;
|
||||
}
|
||||
|
||||
public void setStudy_time_ranking(String study_time_ranking) {
|
||||
public void setStudy_time_ranking(int study_time_ranking) {
|
||||
this.study_time_ranking = study_time_ranking;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user