zjh
2024-12-30 1b7ed7edb09aaecf68ddf3396ee007bc6eadf52a
ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java
@@ -2,6 +2,7 @@
import java.util.Date;
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
@@ -38,6 +39,9 @@
    @Excel(name = "体检号")
    @ApiModelProperty(value = "体检号")
    private String tjNum;
    @TableField(exist = false)
    private String cardId;
    /**
     * 采样编号
@@ -108,12 +112,65 @@
    /**
     * 合并后的父id
     */
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private String parentId;
    /**
     * 向lis申请单的检验序号
     */
    private String jyxh;
    /**
     * 标本代码
     */
    private String specimenTypeCode;
    /**
     * 是否为合并项目 1是 0否
     */
    private Integer isMerge;
    /**
     * lis检验项目代码
     */
    private String jyxmdm;
    /**
     * 补录项目标志编码
     */
    private String jxbz;
    public String getJxbz() {
        return jxbz;
    }
    public void setJxbz(String jxbz) {
        this.jxbz = jxbz;
    }
    public String getJyxmdm() {
        return jyxmdm;
    }
    public void setJyxmdm(String jyxmdm) {
        this.jyxmdm = jyxmdm;
    }
    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;
@@ -215,6 +272,7 @@
                .append("deleted", getDeleted())
                .append("parentId", getParentId())
                .append("jyxh", getJyxh())
                .append("specimenTypeCode", getSpecimenTypeCode())
                .toString();
    }
}