健康报告查询接口
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
package com.sv.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class HealthDoc {
|
||||
public class HealthDoc implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
private Integer memberId;
|
||||
|
||||
/**
|
||||
* 用户昵称
|
||||
*/
|
||||
private String nickName;
|
||||
|
||||
private String docName;
|
||||
|
||||
private String docType;
|
||||
@@ -56,6 +62,14 @@ public class HealthDoc {
|
||||
this.memberId = memberId;
|
||||
}
|
||||
|
||||
public String getNickName() {
|
||||
return nickName;
|
||||
}
|
||||
|
||||
public void setNickName(String nickName) {
|
||||
this.nickName = nickName;
|
||||
}
|
||||
|
||||
public String getDocName() {
|
||||
return docName;
|
||||
}
|
||||
@@ -119,4 +133,4 @@ public class HealthDoc {
|
||||
public void setDeleted(Byte deleted) {
|
||||
this.deleted = deleted;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user