lanan-system/dl-module-knowledge/src/main/resources/mapper/TRfeContentMapper.xml
愉快的大福 58f3d3d4a3 知识模块
2024-08-12 21:27:02 +08:00

30 lines
849 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="cn.iocoder.yudao.module.knowledge.mapper.TRfeContentMapper">
<update id="updateById">
UPDATE t_rfe_content
SET
deleted = '1'
WHERE rfe_id = #{rfeId}
</update>
<select id="selectByCode" resultType="cn.iocoder.yudao.module.knowledge.entity.TRfeContent">
select
*
from t_rfe_content
<if test="code !='' and code !=null">
where rfe_id = #{code}
</if>
order by sort
</select>
<select id="selectByRfId" resultType="cn.iocoder.yudao.module.knowledge.entity.TRfeContent">
select
*
from t_rfe_content
where rfe_id = #{id}
</select>
</mapper>