From 01aa93974f7a68d8a2e336e749440dcad400d37f Mon Sep 17 00:00:00 2001 From: zhuqing Date: Tue, 6 Sep 2022 17:43:36 +0800 Subject: [PATCH] =?UTF-8?q?pc=20doctor=20add=20=E8=AF=81=E4=B9=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ruoyi/system/domain/req/PcTDoctorUpdateReq.java | 13 +++++++++++++ .../main/resources/mapper/system/TDoctorMapper.xml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) 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},