package com.smartor.domain;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 问卷最终结果对象 svy_finish
|
*
|
* @author ruoyi
|
* @date 2023-03-03
|
*/
|
public class SvyFinish extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 自增ID */
|
private Long id;
|
|
/** 患者ID */
|
@Excel(name = " 患者ID ")
|
private Long patid;
|
|
/** 关联方案ID */
|
@Excel(name = " 关联方案ID ")
|
private Long schemeid;
|
|
/** 问卷标题 */
|
@Excel(name = " 问卷标题 ")
|
private String svytitle;
|
|
/** 问卷ID */
|
@Excel(name = " 问卷ID ")
|
private Long svyid;
|
|
/** 总得分 */
|
@Excel(name = " 总得分 ")
|
private BigDecimal totalscore;
|
|
/** 反馈结果内容 */
|
@Excel(name = " 反馈结果内容 ")
|
private String resultcontent;
|
|
/** 机构ID */
|
@Excel(name = " 机构ID ")
|
private String orgid;
|
|
/** 展示得分 */
|
@Excel(name = " 展示得分 ")
|
private Long isshowscore;
|
|
/** 计划ID */
|
@Excel(name = " 计划ID ")
|
private Long schemeplanid;
|
|
/** 任务ID */
|
@Excel(name = " 任务ID ")
|
private Long schemetaskid;
|
|
/** 是否异常 */
|
@Excel(name = " 是否异常 ")
|
private Long isabnormal;
|
|
/** 删除标记 */
|
private String delFlag;
|
|
/** 上传标记 */
|
private Long isupload;
|
|
/** 上传时间 */
|
private Date uploadTime;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setPatid(Long patid)
|
{
|
this.patid = patid;
|
}
|
|
public Long getPatid()
|
{
|
return patid;
|
}
|
public void setSchemeid(Long schemeid)
|
{
|
this.schemeid = schemeid;
|
}
|
|
public Long getSchemeid()
|
{
|
return schemeid;
|
}
|
public void setSvytitle(String svytitle)
|
{
|
this.svytitle = svytitle;
|
}
|
|
public String getSvytitle()
|
{
|
return svytitle;
|
}
|
public void setSvyid(Long svyid)
|
{
|
this.svyid = svyid;
|
}
|
|
public Long getSvyid()
|
{
|
return svyid;
|
}
|
public void setTotalscore(BigDecimal totalscore)
|
{
|
this.totalscore = totalscore;
|
}
|
|
public BigDecimal getTotalscore()
|
{
|
return totalscore;
|
}
|
public void setResultcontent(String resultcontent)
|
{
|
this.resultcontent = resultcontent;
|
}
|
|
public String getResultcontent()
|
{
|
return resultcontent;
|
}
|
public void setOrgid(String orgid)
|
{
|
this.orgid = orgid;
|
}
|
|
public String getOrgid()
|
{
|
return orgid;
|
}
|
public void setIsshowscore(Long isshowscore)
|
{
|
this.isshowscore = isshowscore;
|
}
|
|
public Long getIsshowscore()
|
{
|
return isshowscore;
|
}
|
public void setSchemeplanid(Long schemeplanid)
|
{
|
this.schemeplanid = schemeplanid;
|
}
|
|
public Long getSchemeplanid()
|
{
|
return schemeplanid;
|
}
|
public void setSchemetaskid(Long schemetaskid)
|
{
|
this.schemetaskid = schemetaskid;
|
}
|
|
public Long getSchemetaskid()
|
{
|
return schemetaskid;
|
}
|
public void setIsabnormal(Long isabnormal)
|
{
|
this.isabnormal = isabnormal;
|
}
|
|
public Long getIsabnormal()
|
{
|
return isabnormal;
|
}
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
public void setIsupload(Long isupload)
|
{
|
this.isupload = isupload;
|
}
|
|
public Long getIsupload()
|
{
|
return isupload;
|
}
|
public void setUploadTime(Date uploadTime)
|
{
|
this.uploadTime = uploadTime;
|
}
|
|
public Date getUploadTime()
|
{
|
return uploadTime;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("patid", getPatid())
|
.append("schemeid", getSchemeid())
|
.append("svytitle", getSvytitle())
|
.append("svyid", getSvyid())
|
.append("totalscore", getTotalscore())
|
.append("resultcontent", getResultcontent())
|
.append("orgid", getOrgid())
|
.append("isshowscore", getIsshowscore())
|
.append("schemeplanid", getSchemeplanid())
|
.append("schemetaskid", getSchemetaskid())
|
.append("isabnormal", getIsabnormal())
|
.append("delFlag", getDelFlag())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("isupload", getIsupload())
|
.append("uploadTime", getUploadTime())
|
.toString();
|
}
|
}
|