|
@ -1,89 +0,0 @@
|
|
|
package com.yihu.wlyy.entity.message;
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by Administrator on 2016/11/7.
|
|
|
* 系通通知
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_notice")
|
|
|
public class Notice extends IdEntity {
|
|
|
|
|
|
private String toUid;//接受人code
|
|
|
private String content;//通知内容
|
|
|
private String title;//消息标题
|
|
|
private String data;//消息数据
|
|
|
private String type;//通知类型
|
|
|
private Date createTime;//创建时间
|
|
|
private String status;//是否发送 1 否 0是
|
|
|
private String toType;//接受人类型 1:医生 2患者
|
|
|
|
|
|
public String getToUid() {
|
|
|
return toUid;
|
|
|
}
|
|
|
|
|
|
public void setToUid(String toUid) {
|
|
|
this.toUid = toUid;
|
|
|
}
|
|
|
|
|
|
public String getContent() {
|
|
|
return content;
|
|
|
}
|
|
|
|
|
|
public void setContent(String content) {
|
|
|
this.content = content;
|
|
|
}
|
|
|
|
|
|
public String getTitle() {
|
|
|
return title;
|
|
|
}
|
|
|
|
|
|
public void setTitle(String title) {
|
|
|
this.title = title;
|
|
|
}
|
|
|
|
|
|
public String getData() {
|
|
|
return data;
|
|
|
}
|
|
|
|
|
|
public void setData(String data) {
|
|
|
this.data = data;
|
|
|
}
|
|
|
|
|
|
public String getType() {
|
|
|
return type;
|
|
|
}
|
|
|
|
|
|
public void setType(String type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(String status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public String getToType() {
|
|
|
return toType;
|
|
|
}
|
|
|
|
|
|
public void setToType(String toType) {
|
|
|
this.toType = toType;
|
|
|
}
|
|
|
}
|