qa-prevention-gwj/src/main/resources/mybatis/datasource/onlinexxks/StudytaskCurriculumMapper.xml

133 lines
3.1 KiB
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="com.zcloud.mapper.datasource.onlinexxks.StudytaskCurriculumMapper">
<!--表名 -->
<sql id="tableName">
BUS_STUDYTASKCURRICULUM
</sql>
<!--数据字典表名 -->
<sql id="dicTableName">
SYS_DICTIONARIES
</sql>
<!-- 字段 -->
<sql id="Field">
f.STUDYTASK_ID,
f.CURRICULUM_ID,
f.STUDYTASKCURRICULUM_ID
</sql>
<!-- 字段用于新增 -->
<sql id="Field2">
STUDYTASK_ID,
CURRICULUM_ID,
STUDYTASKCURRICULUM_ID
</sql>
<!-- 字段值 -->
<sql id="FieldValue">
#{STUDYTASK_ID},
#{CURRICULUM_ID},
#{STUDYTASKCURRICULUM_ID}
</sql>
<!-- 新增-->
<insert id="save" parameterType="pd">
insert into
<include refid="tableName"></include>
(
<include refid="Field2"></include>
) values (
<include refid="FieldValue"></include>
)
</insert>
<!-- 删除-->
<delete id="delete" parameterType="pd">
update
<include refid="tableName"></include>
set
ISDELETE = '1'
where
STUDYTASKCURRICULUM_ID = #{STUDYTASKCURRICULUM_ID}
</delete>
<!-- 修改 -->
<update id="edit" parameterType="pd">
update
<include refid="tableName"></include>
set
STUDYTASK_ID = #{STUDYTASK_ID},
CURRICULUM_ID = #{CURRICULUM_ID},
STUDYTASKCURRICULUM_ID = STUDYTASKCURRICULUM_ID
where
STUDYTASKCURRICULUM_ID = #{STUDYTASKCURRICULUM_ID}
</update>
<!-- 通过ID获取数据 -->
<select id="findById" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include> f
where
f.STUDYTASKCURRICULUM_ID = #{STUDYTASKCURRICULUM_ID}
</select>
<!-- 列表 -->
<select id="datalistPage" parameterType="page" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include> f
where f.ISDELETE = '0'
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 -->
and
(
<!-- 根据需求自己加检索条件
字段1 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
or
字段2 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
-->
)
</if>
</select>
<!-- 列表(全部) -->
<select id="listAll" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include> f
where 1=1
<if test="STUDYTASK_ID != null and STUDYTASK_ID != ''"><!-- 关键词检索 -->
STUDYTASK_ID = #{STUDYTASK_ID}
</if>
</select>
<!-- 批量删除 -->
<delete id="deleteAll" parameterType="String">
update
<include refid="tableName"></include>
set
ISDELETE = '1'
where
STUDYTASKCURRICULUM_ID in
<foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<!-- 列表(全部) -->
<select id="countByCurriculumId" parameterType="pd" resultType="integer">
select count(*)
from
<include refid="tableName"></include> f
where 1=1
<if test="CURRICULUM_ID != null and CURRICULUM_ID != ''"><!-- 关键词检索 -->
and CURRICULUM_ID = #{CURRICULUM_ID}
</if>
</select>
</mapper>