forked from kidgrow-microservices-platform

dougang
2021-04-08 6d0fee3cdc8cb213d0388ffa2e7ed7a091a1ea4c
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDoctorMapper.xml
@@ -233,4 +233,17 @@
            and (doctor_type=1 or doctor_type=0) and doctor_state=0 and enabled=0
        </if>
    </select>
    <select id="queryDoctorByC" parameterType="java.util.Map" resultType="com.kidgrow.usercenter.model.SysDoctor">
        SELECT
           <include refid="Column_List"/>
        FROM
            sys_doctor
        WHERE
            is_del = 0
            AND enabled = 1
            AND doctor_type != 1
            AND hospital_id = #{p.hospitalId}
            AND department_id = #{p.departmentId}
    </select>
</mapper>