mybatis_调用存储过程

    <!-- 调用存储过程 -->
    <select id="callCalendarInfo" statementType="CALLABLE" resultMap="BaseResultMap">
        {call create_calendar(
           #{date1},#{date2},#{orgId}
        )}
    </select>
   <!-- dao -->
   void callCalendarInfo(@Param("date1") String date1,@Param("date2") String date2,@Param("orgId") Integer orgId);
原文地址:https://www.cnblogs.com/lq2020/p/13489589.html