|
@ -3,11 +3,8 @@ package com.yihu.jw.entity.specialist.rehabilitation;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
import com.yihu.jw.entity.util.StringFStringEncryptConverter;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Convert;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
@ -53,6 +50,8 @@ public class RehabilitationDetailDO extends UuidIdentityEntity implements Serial
|
|
|
private String remark;//备注
|
|
|
@Column(name = "relation_code")
|
|
|
private String relationCode;//业务关联code
|
|
|
@Column(name = "followup_detail_type")
|
|
|
private Integer followupDetailType;//默认0,1是冠心病社区表单
|
|
|
|
|
|
private Integer reservationType;//复诊类型:1线上,2线下,3远程
|
|
|
private Date createTime;
|
|
@ -269,4 +268,12 @@ public class RehabilitationDetailDO extends UuidIdentityEntity implements Serial
|
|
|
public void setUpdateUserName(String updateUserName) {
|
|
|
this.updateUserName = updateUserName;
|
|
|
}
|
|
|
|
|
|
public Integer getFollowupDetailType() {
|
|
|
return followupDetailType;
|
|
|
}
|
|
|
|
|
|
public void setFollowupDetailType(Integer followupDetailType) {
|
|
|
this.followupDetailType = followupDetailType;
|
|
|
}
|
|
|
}
|