InstantQuestionDataSource1Mapper.xml 3.07 KB
<?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="InstantQuestionDataSource1Mapper">
	
	<!--表名 -->
	<sql id="tableName">
		SV_INSTANTQUESTIONDATASOURCE1
	</sql>
	
	<!-- 字段 -->
	<sql id="Field">
		IMAGE_URL,	
		SCORE,	
		ANSWER_CONTENT,	
		RIGHT_ANSWER,	
		TAG,	
		PERMISSION,	
		SUBJECT_ID,	
		GRADE_ID,	
		SCHOOL_ID,	
		USER_ID,	
		CREATE_DATE,	
		CLASS_ID,	
		INSTANTQUESTIONDATASOURCE1_ID
	</sql>
	
	<!-- 字段值 -->
	<sql id="FieldValue">
		#{IMAGE_URL},	
		#{SCORE},	
		#{ANSWER_CONTENT},	
		#{RIGHT_ANSWER},	
		#{TAG},	
		#{PERMISSION},	
		#{SUBJECT_ID},	
		#{GRADE_ID},	
		#{SCHOOL_ID},	
		#{USER_ID},	
		#{CREATE_DATE},	
		#{CLASS_ID},	
		#{INSTANTQUESTIONDATASOURCE1_ID}
	</sql>
	
	<!-- 新增-->
	<insert id="save" parameterType="pd">
		insert into 
	<include refid="tableName"></include>
		(
	<include refid="Field"></include>
		) values (
	<include refid="FieldValue"></include>
		)
	</insert>
	
	<!-- 删除-->
	<delete id="delete" parameterType="pd">
		delete from
		<include refid="tableName"></include>
		where 
			INSTANTQUESTIONDATASOURCE1_ID = #{INSTANTQUESTIONDATASOURCE1_ID}
	</delete>
	
	<!-- 修改 -->
	<update id="edit" parameterType="pd">
		update
		<include refid="tableName"></include>
		set 
			IMAGE_URL = #{IMAGE_URL},
			SCORE = #{SCORE},
			ANSWER_CONTENT = #{ANSWER_CONTENT},
			RIGHT_ANSWER = #{RIGHT_ANSWER},
			TAG = #{TAG},
			PERMISSION = #{PERMISSION},
			SUBJECT_ID = #{SUBJECT_ID},
			GRADE_ID = #{GRADE_ID},
			SCHOOL_ID = #{SCHOOL_ID},
			USER_ID = #{USER_ID},
			创建时间 = #{CREATE_DATE},
			CLASS_ID = #{CLASS_ID},
		INSTANTQUESTIONDATASOURCE1_ID = INSTANTQUESTIONDATASOURCE1_ID
		where 
		INSTANTQUESTIONDATASOURCE1_ID = #{INSTANTQUESTIONDATASOURCE1_ID}
	</update>
	
	<!-- 通过ID获取数据 -->
	<select id="findById" parameterType="pd" resultType="pd">
		select 
		<include refid="Field"></include>
		from 
		<include refid="tableName"></include>
		where 
			INSTANTQUESTIONDATASOURCE1_ID = #{INSTANTQUESTIONDATASOURCE1_ID}
	</select>
	
	<!-- 列表 -->
	<select id="datalistPage" parameterType="page" resultType="pd">
		select
		<include refid="Field"></include>
		from 
		<include refid="tableName"></include>
		where 1=1
		<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>
	</select>
	
	<!-- 批量删除 -->
	<delete id="deleteAll" parameterType="String">
		delete from
		<include refid="tableName"></include>
		where 
			INSTANTQUESTIONDATASOURCE1_ID in
		<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
                 #{item}
		</foreach>
	</delete>
	
	<!-- fh313596790qq(青苔) -->
</mapper>