init
This commit is contained in:
107
src/main/java/com/exam/sb/entity/Person_805Entity.java
Normal file
107
src/main/java/com/exam/sb/entity/Person_805Entity.java
Normal file
@ -0,0 +1,107 @@
|
||||
package com.exam.sb.entity;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
public class Person_805Entity {
|
||||
//id,sfz_id,name,gender,password,hometown,chronic_disease,birthday,emr,create_time,update_time
|
||||
private String id;
|
||||
private String sfz_id;
|
||||
private String name;
|
||||
private String gender;
|
||||
private String password;
|
||||
private String hometown;
|
||||
private String chronic_disease;
|
||||
private long birthday;
|
||||
private String emr;
|
||||
private long create_time;
|
||||
private long update_time;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSfz_id() {
|
||||
return sfz_id;
|
||||
}
|
||||
|
||||
public void setSfz_id(String sfz_id) {
|
||||
this.sfz_id = sfz_id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getGender() {
|
||||
return gender;
|
||||
}
|
||||
|
||||
public void setGender(String gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getHometown() {
|
||||
return hometown;
|
||||
}
|
||||
|
||||
public void setHometown(String hometown) {
|
||||
this.hometown = hometown;
|
||||
}
|
||||
|
||||
public String getChronic_disease() {
|
||||
return chronic_disease;
|
||||
}
|
||||
|
||||
public void setChronic_disease(String chronic_disease) {
|
||||
this.chronic_disease = chronic_disease;
|
||||
}
|
||||
|
||||
public long getBirthday() {
|
||||
return birthday;
|
||||
}
|
||||
|
||||
public void setBirthday(long birthday) {
|
||||
this.birthday = birthday;
|
||||
}
|
||||
|
||||
public String getEmr() {
|
||||
return emr;
|
||||
}
|
||||
|
||||
public void setEmr(String emr) {
|
||||
this.emr = emr;
|
||||
}
|
||||
|
||||
public long getCreate_time() {
|
||||
return create_time;
|
||||
}
|
||||
|
||||
public void setCreate_time(long create_time) {
|
||||
this.create_time = create_time;
|
||||
}
|
||||
|
||||
public long getUpdate_time() {
|
||||
return update_time;
|
||||
}
|
||||
|
||||
public void setUpdate_time(long update_time) {
|
||||
this.update_time = update_time;
|
||||
}
|
||||
}
|
@ -0,0 +1,98 @@
|
||||
package com.exam.sb.entity;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
public class Person_health_805Entity {
|
||||
//id,sfz_id,height,weight,heart_rate,sbp,dbp,blood_sugar,create_time,update_time
|
||||
private String id;
|
||||
private String sfz_id;
|
||||
private int height;
|
||||
private int weight;
|
||||
private int heart_rate;
|
||||
private int sbp;
|
||||
private int dbp;
|
||||
private float blood_sugar;
|
||||
private long create_time;
|
||||
private long update_time;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getSfz_id() {
|
||||
return sfz_id;
|
||||
}
|
||||
|
||||
public void setSfz_id(String sfz_id) {
|
||||
this.sfz_id = sfz_id;
|
||||
}
|
||||
|
||||
public int getHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
public void setHeight(int height) {
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public int getWeight() {
|
||||
return weight;
|
||||
}
|
||||
|
||||
public void setWeight(int weight) {
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public int getHeart_rate() {
|
||||
return heart_rate;
|
||||
}
|
||||
|
||||
public void setHeart_rate(int heart_rate) {
|
||||
this.heart_rate = heart_rate;
|
||||
}
|
||||
|
||||
public int getSbp() {
|
||||
return sbp;
|
||||
}
|
||||
|
||||
public void setSbp(int sbp) {
|
||||
this.sbp = sbp;
|
||||
}
|
||||
|
||||
public int getDbp() {
|
||||
return dbp;
|
||||
}
|
||||
|
||||
public void setDbp(int dbp) {
|
||||
this.dbp = dbp;
|
||||
}
|
||||
|
||||
public float getBlood_sugar() {
|
||||
return blood_sugar;
|
||||
}
|
||||
|
||||
public void setBlood_sugar(float blood_sugar) {
|
||||
this.blood_sugar = blood_sugar;
|
||||
}
|
||||
|
||||
public long getCreate_time() {
|
||||
return create_time;
|
||||
}
|
||||
|
||||
public void setCreate_time(long create_time) {
|
||||
this.create_time = create_time;
|
||||
}
|
||||
|
||||
public long getUpdate_time() {
|
||||
return update_time;
|
||||
}
|
||||
|
||||
public void setUpdate_time(long update_time) {
|
||||
this.update_time = update_time;
|
||||
}
|
||||
}
|
34
src/main/java/com/exam/sb/entity/User_70Entity.java
Normal file
34
src/main/java/com/exam/sb/entity/User_70Entity.java
Normal file
@ -0,0 +1,34 @@
|
||||
package com.exam.sb.entity;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
public class User_70Entity {
|
||||
private String name;
|
||||
private String address;
|
||||
private String password;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user