|
@ -0,0 +1,94 @@
|
|
|
package com.yihu.wlyy.entity.patient.prenatal;
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_prenatal_inspector_record")
|
|
|
public class PrenatalInspectorRecord extends IdEntity implements Serializable {
|
|
|
private String relation;
|
|
|
private String sender;
|
|
|
private String receiver;
|
|
|
private int type;
|
|
|
private String name;
|
|
|
private String openid;
|
|
|
private String content;
|
|
|
private Integer times;
|
|
|
private Date sendTime;
|
|
|
|
|
|
public String getRelation() {
|
|
|
return relation;
|
|
|
}
|
|
|
|
|
|
public void setRelation(String relation) {
|
|
|
this.relation = relation;
|
|
|
}
|
|
|
|
|
|
public String getSender() {
|
|
|
return sender;
|
|
|
}
|
|
|
|
|
|
public void setSender(String sender) {
|
|
|
this.sender = sender;
|
|
|
}
|
|
|
|
|
|
public String getReceiver() {
|
|
|
return receiver;
|
|
|
}
|
|
|
|
|
|
public void setReceiver(String receiver) {
|
|
|
this.receiver = receiver;
|
|
|
}
|
|
|
|
|
|
public int getType() {
|
|
|
return type;
|
|
|
}
|
|
|
|
|
|
public void setType(int type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
public String getOpenid() {
|
|
|
return openid;
|
|
|
}
|
|
|
|
|
|
public void setOpenid(String openid) {
|
|
|
this.openid = openid;
|
|
|
}
|
|
|
|
|
|
public String getContent() {
|
|
|
return content;
|
|
|
}
|
|
|
|
|
|
public void setContent(String content) {
|
|
|
this.content = content;
|
|
|
}
|
|
|
|
|
|
public Integer getTimes() {
|
|
|
return times;
|
|
|
}
|
|
|
|
|
|
public void setTimes(Integer times) {
|
|
|
this.times = times;
|
|
|
}
|
|
|
|
|
|
public Date getSendTime() {
|
|
|
return sendTime;
|
|
|
}
|
|
|
|
|
|
public void setSendTime(Date sendTime) {
|
|
|
this.sendTime = sendTime;
|
|
|
}
|
|
|
}
|