|
@@ -124,13 +124,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</foreach>
|
|
|
</select>
|
|
|
|
|
|
- <select id="selectDoctorNameByIds" resultType="java.lang.String">
|
|
|
- select GROUP_CONCAT(DISTINCT doctor_name ORDER BY doctor_name SEPARATOR ',') AS doctor_name from fs_doctor where doctor_id in
|
|
|
- <foreach collection="doctorIds.split(',')" item="doctorId" open="(" close=")" separator=",">
|
|
|
- #{doctorId}
|
|
|
- </foreach>
|
|
|
- </select>
|
|
|
-
|
|
|
<insert id="insertFsDoctor" parameterType="FsDoctor" useGeneratedKeys="true" keyProperty="doctorId">
|
|
|
insert into fs_doctor
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|