pc doctor add 证书

master
zhuqing 2 years ago
parent 5f65c9bd92
commit 01aa93974f

@ -1,5 +1,6 @@
package com.ruoyi.system.domain.req; package com.ruoyi.system.domain.req;
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
@ -37,10 +38,22 @@ public class PcTDoctorUpdateReq {
@ApiModelProperty("职业医师照片base64") @ApiModelProperty("职业医师照片base64")
private String medicalLicense; private String medicalLicense;
/** 执照 */
@ApiModelProperty("执照")
private String medicalLicense2;
/** 二维码base64 */ /** 二维码base64 */
@ApiModelProperty("二维码base64") @ApiModelProperty("二维码base64")
private String qrCode; private String qrCode;
public String getMedicalLicense2() {
return medicalLicense2;
}
public void setMedicalLicense2(String medicalLicense2) {
this.medicalLicense2 = medicalLicense2;
}
public Long getId() { public Long getId() {
return id; return id;
} }

@ -125,7 +125,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="speciality != null">speciality = #{speciality},</if> <if test="speciality != null">speciality = #{speciality},</if>
<if test="introduction != null">introduction = #{introduction},</if> <if test="introduction != null">introduction = #{introduction},</if>
<if test="medicalLicense != null">medical_license = #{medicalLicense},</if> <if test="medicalLicense != null">medical_license = #{medicalLicense},</if>
<if test="medicalLicense2 != null">medical_license = #{medicalLicense2},</if> <if test="medicalLicense2 != null">medical_license2 = #{medicalLicense2},</if>
<if test="qrCode != null">qr_code = #{qrCode},</if> <if test="qrCode != null">qr_code = #{qrCode},</if>
<if test="hospitalId != null">hospital_id = #{hospitalId},</if> <if test="hospitalId != null">hospital_id = #{hospitalId},</if>
<if test="delFlag != null">del_flag = #{delFlag},</if> <if test="delFlag != null">del_flag = #{delFlag},</if>

Loading…
Cancel
Save