package com.smartor.domain;
|
|
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_lib_result
|
*
|
* @author ruoyi
|
* @date 2023-03-02
|
*/
|
public class SvyLibResult extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 自增ID */
|
private Long resultid;
|
|
/** 问卷ID */
|
@Excel(name = " 问卷ID ")
|
private Long svyid;
|
|
/** 结果内容 */
|
@Excel(name = " 结果内容 ")
|
private String resultcontent;
|
|
/** 或且 */
|
@Excel(name = " 或且 ")
|
private Long orand;
|
|
/** 是否显示得分 */
|
@Excel(name = " 是否显示得分 ")
|
private Long isshowscore;
|
|
/** 排序 */
|
@Excel(name = " 排序 ")
|
private Long sort;
|
|
/** 机构ID */
|
@Excel(name = " 机构ID ")
|
private String orgid;
|
|
/** 删除标记 */
|
private String delFlag;
|
|
/** 上传标记 */
|
@Excel(name = " 上传标记 ")
|
private Long isupload;
|
|
/** 上传时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date uploadTime;
|
|
public void setResultid(Long resultid)
|
{
|
this.resultid = resultid;
|
}
|
|
public Long getResultid()
|
{
|
return resultid;
|
}
|
public void setSvyid(Long svyid)
|
{
|
this.svyid = svyid;
|
}
|
|
public Long getSvyid()
|
{
|
return svyid;
|
}
|
public void setResultcontent(String resultcontent)
|
{
|
this.resultcontent = resultcontent;
|
}
|
|
public String getResultcontent()
|
{
|
return resultcontent;
|
}
|
public void setOrand(Long orand)
|
{
|
this.orand = orand;
|
}
|
|
public Long getOrand()
|
{
|
return orand;
|
}
|
public void setIsshowscore(Long isshowscore)
|
{
|
this.isshowscore = isshowscore;
|
}
|
|
public Long getIsshowscore()
|
{
|
return isshowscore;
|
}
|
public void setSort(Long sort)
|
{
|
this.sort = sort;
|
}
|
|
public Long getSort()
|
{
|
return sort;
|
}
|
public void setOrgid(String orgid)
|
{
|
this.orgid = orgid;
|
}
|
|
public String getOrgid()
|
{
|
return orgid;
|
}
|
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("resultid", getResultid())
|
.append("svyid", getSvyid())
|
.append("resultcontent", getResultcontent())
|
.append("orand", getOrand())
|
.append("isshowscore", getIsshowscore())
|
.append("sort", getSort())
|
.append("orgid", getOrgid())
|
.append("delFlag", getDelFlag())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("isupload", getIsupload())
|
.append("uploadTime", getUploadTime())
|
.toString();
|
}
|
}
|