| | |
| | | |
| | | <select id="selectIvrLibIntentList" parameterType="IvrLibIntent" resultMap="IvrLibIntentResult"> |
| | | <include refid="selectIvrLibIntentVo"/> |
| | | <where> |
| | | where 1=1 |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="intentionname != null and intentionname != ''"> and intentionname like concat('%', #{intentionname}, '%')</if> |
| | | <if test="categoryid != null "> and categoryid = #{categoryid}</if> |
| | |
| | | <if test="intentionword != null and intentionword != ''"> and intentionword = #{intentionword}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibIntentByIntentid" parameterType="Long" resultMap="IvrLibIntentResult"> |