新增删除

This commit is contained in:
2025-08-25 14:50:39 +08:00
parent ff46d9065f
commit d0c8c86839
8 changed files with 159 additions and 18 deletions

View File

@@ -84,4 +84,16 @@
<select id="getUserIdByStuNo" parameterType="String" resultType="Long">
select user_id from sys_user where user_name = #{stuNo}
</select>
<select id="selectCphMsgListForFlowable" parameterType="CphMsg" resultMap="CphMsgResult">
<include refid="selectCphMsgVo"/>
<where>
<if test="receiver != null "> and receiver = #{receiver}</if>
<if test="content != null and content != ''">
and content LIKE CONCAT('%', #{content}, '%')
</if>
</where>
order by id desc
</select>
</mapper>