LAPTOP-KB9HII50\70708 2 years ago
parent
commit
b0ea118e7c

+ 1 - 0
business/base-service/src/main/java/com/yihu/jw/hospital/prescription/service/PrescriptionService.java

@ -730,6 +730,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
        rs.put("patientCancelValue", outpatientDO.getPatientCancelValue());
        rs.put("patientCancelRemark", outpatientDO.getPatientCancelRemark());
        rs.put("operator",outpatientDO.getOperator());
        rs.put("isPositive",outpatientDO.getIsPositive());
        rs.put("status",outpatientDO.getStatus());
        rs.put("fee",outpatientDO.getFee());
        rs.put("hisStatus",outpatientDO.getHisStatus());

+ 2 - 0
common/common-entity/sql/sql记录

@ -2424,3 +2424,5 @@ CREATE TABLE `base_check_org` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='机构考核';
-- 2022-12-23   ysj
alter table wlyy_outpatient add column is_positive tinyint(1) DEFAULT NULL comment '是否新冠阳性 1是0否';

+ 12 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/hospital/prescription/WlyyOutpatientDO.java

@ -303,6 +303,9 @@ public class WlyyOutpatientDO extends UuidIdentityEntity {
    private String diseaseCode;//特殊病种编码
    private String diseaseName;//特殊病种名称
    private Integer isPositive;//是否新冠阳性 1是0否
    @Column(name = "disease_code")
    public String getDiseaseCode() {
        return diseaseCode;
@ -847,4 +850,13 @@ public class WlyyOutpatientDO extends UuidIdentityEntity {
    public void setChannelId(String channelId) {
        this.channelId = channelId;
    }
    @Column(name = "is_positive")
    public Integer getIsPositive() {
        return isPositive;
    }
    public void setIsPositive(Integer isPositive) {
        this.isPositive = isPositive;
    }
}