|
|
|
@ -18,6 +18,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="speciality" column="speciality" />
|
|
|
|
|
<result property="introduction" column="introduction" />
|
|
|
|
|
<result property="medicalLicense" column="medical_license" />
|
|
|
|
|
<result property="medicalLicense2" column="medical_license2" />
|
|
|
|
|
<result property="qrCode" column="qr_code" />
|
|
|
|
|
<result property="hospitalId" column="hospital_id" />
|
|
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
|
@ -26,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTDoctorVo">
|
|
|
|
|
select id, open_id, user_id, identifier, name, phone, sex, age, marriage, title, speciality, introduction, medical_license, qr_code, hospital_id, del_flag, create_time, update_time from t_doctor
|
|
|
|
|
select id, open_id, user_id, identifier, name, phone, sex, age, marriage, title, speciality, introduction, medical_license , medical_license2, qr_code, hospital_id, del_flag, create_time, update_time from t_doctor
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTDoctorList" parameterType="TDoctor" resultMap="TDoctorResult">
|
|
|
|
@ -44,6 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="speciality != null and speciality != ''"> and speciality = #{speciality}</if>
|
|
|
|
|
<if test="introduction != null and introduction != ''"> and introduction = #{introduction}</if>
|
|
|
|
|
<if test="medicalLicense != null and medicalLicense != ''"> and medical_license = #{medicalLicense}</if>
|
|
|
|
|
<if test="medicalLicense2 != null and medicalLicense2 != ''"> and medical_license2 = #{medicalLicense2}</if>
|
|
|
|
|
<if test="qrCode != null and qrCode != ''"> and qr_code = #{qrCode}</if>
|
|
|
|
|
<if test="hospitalId != null "> and hospital_id = #{hospitalId}</if>
|
|
|
|
|
</where>
|
|
|
|
@ -79,6 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="speciality != null">speciality,</if>
|
|
|
|
|
<if test="introduction != null">introduction,</if>
|
|
|
|
|
<if test="medicalLicense != null">medical_license,</if>
|
|
|
|
|
<if test="medicalLicense2 != null">medical_license2,</if>
|
|
|
|
|
<if test="qrCode != null">qr_code,</if>
|
|
|
|
|
<if test="hospitalId != null">hospital_id,</if>
|
|
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
|
@ -98,6 +101,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="speciality != null">#{speciality},</if>
|
|
|
|
|
<if test="introduction != null">#{introduction},</if>
|
|
|
|
|
<if test="medicalLicense != null">#{medicalLicense},</if>
|
|
|
|
|
<if test="medicalLicense2 != null">#{medicalLicense2},</if>
|
|
|
|
|
<if test="qrCode != null">#{qrCode},</if>
|
|
|
|
|
<if test="hospitalId != null">#{hospitalId},</if>
|
|
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
|
@ -121,6 +125,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="speciality != null">speciality = #{speciality},</if>
|
|
|
|
|
<if test="introduction != null">introduction = #{introduction},</if>
|
|
|
|
|
<if test="medicalLicense != null">medical_license = #{medicalLicense},</if>
|
|
|
|
|
<if test="medicalLicense2 != null">medical_license = #{medicalLicense2},</if>
|
|
|
|
|
<if test="qrCode != null">qr_code = #{qrCode},</if>
|
|
|
|
|
<if test="hospitalId != null">hospital_id = #{hospitalId},</if>
|
|
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
|
@ -155,6 +160,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
speciality,
|
|
|
|
|
introduction,
|
|
|
|
|
medical_license as medicalLicense,
|
|
|
|
|
medical_license2 as medicalLicense2,
|
|
|
|
|
qr_code as qrCode,
|
|
|
|
|
del_flag as delFlag,
|
|
|
|
|
hospital_id as hospitalId,
|
|
|
|
@ -202,6 +208,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
speciality,
|
|
|
|
|
introduction,
|
|
|
|
|
medical_license AS medicalLicense,
|
|
|
|
|
medical_license2 AS medicalLicense2,
|
|
|
|
|
qr_code AS qrCode,
|
|
|
|
|
hospital_id AS hospitalId
|
|
|
|
|
FROM
|
|
|
|
|