zhaowenxuan
2024-10-16 0f5da45abcd2b1cba6b95dbb38ab6d64cd30b165
ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java
@@ -105,6 +105,58 @@
    @TableField(exist = false)
    private TjCustomer customer;
    /**
     * 合并后的父id
     */
    private String parentId;
    /**
     * 向lis申请单的检验序号
     */
    private String jyxh;
    /**
     * 标本代码
     */
    private String specimenTypeCode;
    /**
     * 是否为合并项目 1是 0否
     */
    private Integer isMerge;
    public Integer getIsMerge() {
        return isMerge;
    }
    public void setIsMerge(Integer isMerge) {
        this.isMerge = isMerge;
    }
    public String getSpecimenTypeCode() {
        return specimenTypeCode;
    }
    public void setSpecimenTypeCode(String specimenTypeCode) {
        this.specimenTypeCode = specimenTypeCode;
    }
    public String getParentId() {
        return parentId;
    }
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
    public String getJyxh() {
        return jyxh;
    }
    public void setJyxh(String jyxh) {
        this.jyxh = jyxh;
    }
    public void setId(String id) {
        this.id = id;
    }
@@ -187,6 +239,9 @@
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("deleted", getDeleted())
                .append("parentId", getParentId())
                .append("jyxh", getJyxh())
                .append("specimenTypeCode", getSpecimenTypeCode())
                .toString();
    }
}