package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * entity:BisInspAnswer * * @author lql * @date 2026-1-12 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspAnswer extends BaseBean implements Serializable { // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 登记表ID @ApiModelProperty(value = "登记表ID", name = "rgstrId") private String rgstrId; // 关联问题ID @ApiModelProperty(value = "关联问题ID", name = "questionId") private String questionId; // 问题答案 @ApiModelProperty(value = "问题答案", name = "answerValue") private String answerValue; // 记录人员ID @ApiModelProperty(value = "记录人员ID", name = "persId") private String persId; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 最后修改时间 @ApiModelProperty(value = "最后修改时间", name = "uptm") private Date uptm; // 备注 @ApiModelProperty(value = "备注", name = "note") private String note; // 数据状态 @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; public BisInspAnswer() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getRgstrId() { return rgstrId; } public void setRgstrId(String rgstrId) { this.rgstrId = rgstrId; } public String getQuestionId() { return questionId; } public void setQuestionId(String questionId) { this.questionId = questionId; } public String getAnswerValue() { return answerValue; } public void setAnswerValue(String answerValue) { this.answerValue = answerValue; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "BisInspAnswer [" + "id=" + id + ", rgstrId=" + rgstrId + ", questionId=" + questionId + ", answerValue=" + answerValue + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]"; } }