forked from integrated_whb/integrated_whb
186 lines
4.6 KiB
XML
186 lines
4.6 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.dsno3.eduArchives.ArchivesReviewMapper">
|
|
|
|
<!--表名 -->
|
|
<sql id="tableName">
|
|
BUS_ARCHIVES_REVIEW
|
|
</sql>
|
|
|
|
<!-- 字段 -->
|
|
<sql id="Field">
|
|
f
|
|
.
|
|
REVIEW_TIME
|
|
,
|
|
f.REVIEW_PERSON,
|
|
f.CURRICULUM_ID,
|
|
f.CLASS_ID,
|
|
f.ISDELETE,
|
|
f.CREATOR,
|
|
f.CREATTIME,
|
|
f.OPERATOR,
|
|
f.OPERATTIME,
|
|
f.ARCHIVES_REVIEW_ID,
|
|
f.BOOK_NUM,
|
|
f.REVIEW_OPINIONS,
|
|
f.CODE,
|
|
f.END_TIME,
|
|
f.enterpriseName,
|
|
f.CORP_NAME
|
|
</sql>
|
|
|
|
<!-- 字段用于新增 -->
|
|
<sql id="Field2">
|
|
REVIEW_TIME
|
|
,
|
|
REVIEW_PERSON,
|
|
CURRICULUM_ID,
|
|
CLASS_ID,
|
|
ISDELETE,
|
|
CREATOR,
|
|
CREATTIME,
|
|
OPERATOR,
|
|
OPERATTIME,
|
|
ARCHIVES_REVIEW_ID,
|
|
BOOK_NUM,
|
|
REVIEW_OPINIONS,
|
|
CODE,
|
|
END_TIME,
|
|
enterpriseName,
|
|
CORP_NAME
|
|
</sql>
|
|
|
|
<!-- 字段值 -->
|
|
<sql id="FieldValue">
|
|
#{REVIEW_TIME}
|
|
,
|
|
#{REVIEW_PERSON},
|
|
#{CURRICULUM_ID},
|
|
#{CLASS_ID},
|
|
#{ISDELETE},
|
|
#{CREATOR},
|
|
#{CREATTIME},
|
|
#{OPERATOR},
|
|
#{OPERATTIME},
|
|
#{ARCHIVES_REVIEW_ID},
|
|
#{BOOK_NUM},
|
|
#{REVIEW_OPINIONS},
|
|
#{CODE},
|
|
#{END_TIME},
|
|
#{enterpriseName},
|
|
#{CORP_NAME}
|
|
</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
|
|
ARCHIVES_REVIEW_ID = #{ARCHIVES_REVIEW_ID}
|
|
</delete>
|
|
|
|
<!-- 修改 -->
|
|
<update id="edit" parameterType="pd">
|
|
update
|
|
<include refid="tableName"></include>
|
|
set
|
|
REVIEW_TIME = #{REVIEW_TIME},
|
|
REVIEW_PERSON = #{REVIEW_PERSON},
|
|
CURRICULUM_ID = #{CURRICULUM_ID},
|
|
CLASS_ID = #{CLASS_ID},
|
|
BOOK_NUM = #{BOOK_NUM},
|
|
REVIEW_OPINIONS = #{REVIEW_OPINIONS},
|
|
ISDELETE = #{ISDELETE},
|
|
CREATOR = #{CREATOR},
|
|
CREATTIME = #{CREATTIME},
|
|
OPERATOR = #{OPERATOR},
|
|
OPERATTIME = #{OPERATTIME},
|
|
ARCHIVES_REVIEW_ID = ARCHIVES_REVIEW_ID,
|
|
CODE = #{CODE},
|
|
END_TIME = #{END_TIME},
|
|
enterpriseName = #{enterpriseName},
|
|
CORP_NAME = #{CORP_NAME}
|
|
where
|
|
ARCHIVES_REVIEW_ID = #{ARCHIVES_REVIEW_ID}
|
|
</update>
|
|
|
|
<!-- 通过ID获取数据 -->
|
|
<select id="findById" parameterType="pd" resultType="pd">
|
|
select
|
|
<include refid="Field"></include>
|
|
from
|
|
<include refid="tableName"></include>
|
|
f
|
|
where
|
|
f.CLASS_ID = #{CLASS_ID}
|
|
<if test="CURRICULUM_ID != null and CURRICULUM_ID != ''">
|
|
and f.CURRICULUM_ID = #{CURRICULUM_ID}
|
|
</if>
|
|
</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 f.ISDELETE = '0'
|
|
<if test="CURRICULUM_ID != null and CURRICULUM_ID != ''"><!-- 关键词检索 -->
|
|
and f.CURRICULUM_ID = #{CURRICULUM_ID}
|
|
</if>
|
|
<if test="CLASS_ID != null and CLASS_ID != ''"><!-- 关键词检索 -->
|
|
and f.CLASS_ID = #{CLASS_ID}
|
|
</if>
|
|
order by f.CREATTIME desc
|
|
</select>
|
|
|
|
<!-- 批量删除 -->
|
|
<delete id="deleteAll" parameterType="String">
|
|
update
|
|
<include refid="tableName"></include>
|
|
set
|
|
ISDELETE = '1'
|
|
where
|
|
ARCHIVES_REVIEW_ID in
|
|
<foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")">
|
|
#{item}
|
|
</foreach>
|
|
</delete>
|
|
|
|
</mapper>
|