Browse Source

中山医院医技预约

wangzhinan 7 tháng trước cách đây
mục cha
commit
73c46cbe19

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

@ -16812,6 +16812,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
        reservationInfoDO.setChiefComplaint(chiefComplaint);
        reservationInfoDO.setIllRecord(illRecord);
        reservationInfoDO.setRelationCode(relationCode);
        reservationInfoDO.setRelationType(relationType);
        reservationInfoDO.setIllRecord(illRecord);
        reservationInfoDO.setCreateTime(new Date());
        reservationInfoDO = reservationInfoDao.save(reservationInfoDO);
@ -16820,6 +16821,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
        data.put("cardNo",patientMedicareCardDO.getCode());
        data.put("idNo",patientDO.getIdcard());
        data.put("idType","01");
        data.put("tel",patientDO.getMobile());
        data.put("patientName",patientDO.getName());
        data.put("openDoctorCode",doctorMappingDO.getMappingCode());
        data.put("openDoctorName",doctorDO.getName());

+ 3 - 3
common/common-entity/src/main/java/com/yihu/jw/entity/hospital/prescription/WlyyReservationInfoDO.java

@ -21,7 +21,7 @@ public class WlyyReservationInfoDO extends UuidIdentityEntityWithOperator {
    private String doctor;
    private String doctorName;
    private String cardNo;
    private String relationType;
    private Integer relationType;
    private String relationCode;
    private String url;
@ -85,11 +85,11 @@ public class WlyyReservationInfoDO extends UuidIdentityEntityWithOperator {
        this.cardNo = cardNo;
    }
    public String getRelationType() {
    public Integer getRelationType() {
        return relationType;
    }
    public void setRelationType(String relationType) {
    public void setRelationType(Integer relationType) {
        this.relationType = relationType;
    }