| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspQaScore1Sd
- *
- * @author lhc
- * @date 2024-4-7
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspQaScore1Sd extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value="主键ID",name="id")
- private String id;
- // 子表ID
- @ApiModelProperty(value="子表ID",name="caseId")
- private String caseId;
- // 说明
- @ApiModelProperty(value="说明",name="explain")
- private String explain;
- // 专家名称
- @ApiModelProperty(value="专家名称",name="expertNm")
- private String expertNm;
- // 专家ID
- @ApiModelProperty(value="专家ID",name="expertId")
- private String expertId;
- // 分数名称
- @ApiModelProperty(value="分数名称",name="scoreName")
- private String scoreName;
- // 创建时间
- @ApiModelProperty(value="创建时间",name="intm")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value="最后修改时间",name="uptm")
- private Date uptm;
- // 数据状态
- @ApiModelProperty(value="数据状态",name="dataStat")
- private String dataStat;
- private List<GwComFile> gwComFileList;
- public BisInspQaScore1Sd() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getCaseId() {
- return caseId;
- }
- public void setCaseId(String caseId) {
- this.caseId = caseId;
- }
- public String getExplain() {
- return explain;
- }
- public void setExplain(String explain) {
- this.explain = explain;
- }
- public String getExpertNm() {
- return expertNm;
- }
- public void setExpertNm(String expertNm) {
- this.expertNm = expertNm;
- }
- public String getExpertId() {
- return expertId;
- }
- public void setExpertId(String expertId) {
- this.expertId = expertId;
- }
- public String getScoreName() {
- return scoreName;
- }
- public void setScoreName(String scoreName) {
- this.scoreName = scoreName;
- }
- 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 getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "BisInspQaScore1Sd [" + "id=" + id + ", caseId=" + caseId + ", explain=" + explain + ", expertNm=" + expertNm + ", expertId=" + expertId + ", scoreName=" + scoreName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- public List<GwComFile> getGwComFileList() {
- return gwComFileList;
- }
- public void setGwComFileList(List<GwComFile> gwComFileList) {
- this.gwComFileList = gwComFileList;
- }
- }
|