企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 1. 自定义SQL mapper: ~~~ <select id="selectUserBooking" parameterType="java.lang.Integer" resultMap="BaseResultMap"> SELECT <include refid="Base_Column_List"/> FROM eds_detection_booking WHERE loc_userid = #{userId,jdbcType=INTEGER} </select> ~~~ dao: ~~~ EdsDetectionBooking selectUserBooking(Integer userId); ~~~ 1. select标签id名与dao的方法名对应 select id="selectUserBooking" 与 selectUserBooking方法名相同 2. sql的值接收名与方法参数名相同 #{userId,jdbcType=INTEGER} = (Integer userId) 3. `<include refid="Base_Column_List"/>`应用属性列表