| | |
| | | |
| | | <select id="selectIvrSceneList" parameterType="IvrScene" resultMap="IvrSceneResult"> |
| | | <include refid="selectIvrSceneVo"/> |
| | | <where> |
| | | where 1=1 |
| | | <if test="categoryid != null and categoryid != ''"> and categoryid = #{categoryid}</if> |
| | | <if test="scenename != null and scenename != ''"> and scenename like concat('%', #{scenename}, '%')</if> |
| | | <if test="version != null and version != ''"> and version = #{version}</if> |
| | |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="releasenotes != null and releasenotes != ''"> and releasenotes = #{releasenotes}</if> |
| | | <if test="draftid != null "> and draftid = #{draftid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneBySceneid" parameterType="Long" resultMap="IvrSceneResult"> |