市北互联平台后端仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
571 B

6 years ago
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.epmet.dao.StaffWechatDao">
<!-- 根据userId+wxOpenId查询记录 -->
<select id="selectByUserIdAndOpenId" parameterType="map" resultType="com.epmet.dto.StaffWechatDTO">
SELECT
*
FROM
staff_wechat sw
WHERE
sw.DEL_FLAG = '0'
AND sw.USER_ID = #{userId}
AND sw.WX_OPEN_ID = #{wxOpenId}
</select>
</mapper>