diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/req/PcTDoctorUpdateReq.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/req/PcTDoctorUpdateReq.java index c06907e..7d9cdab 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/req/PcTDoctorUpdateReq.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/req/PcTDoctorUpdateReq.java @@ -1,5 +1,6 @@ package com.ruoyi.system.domain.req; +import com.ruoyi.common.annotation.Excel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -37,10 +38,22 @@ public class PcTDoctorUpdateReq { @ApiModelProperty("职业医师照片base64") private String medicalLicense; + /** 执照 */ + @ApiModelProperty("执照") + private String medicalLicense2; + /** 二维码base64 */ @ApiModelProperty("二维码base64") private String qrCode; + public String getMedicalLicense2() { + return medicalLicense2; + } + + public void setMedicalLicense2(String medicalLicense2) { + this.medicalLicense2 = medicalLicense2; + } + public Long getId() { return id; } diff --git a/ruoyi-system/src/main/resources/mapper/system/TDoctorMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TDoctorMapper.xml index ff4fc28..57c9816 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TDoctorMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TDoctorMapper.xml @@ -125,7 +125,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" speciality = #{speciality}, introduction = #{introduction}, medical_license = #{medicalLicense}, - medical_license = #{medicalLicense2}, + medical_license2 = #{medicalLicense2}, qr_code = #{qrCode}, hospital_id = #{hospitalId}, del_flag = #{delFlag},