64 lines
1.7 KiB
XML
64 lines
1.7 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.jsl.oa.mapper.ReviewMapper">
|
|
<insert id="addReview">
|
|
insert into organize_oa.oa_review
|
|
<set>
|
|
|
|
<if test="name != null and name != ''">
|
|
name = #{name},
|
|
</if>
|
|
|
|
<if test="content != null and content != ''">
|
|
content = #{content},
|
|
</if>
|
|
|
|
<if test="sender_id != null">
|
|
sender_id = #{sender_id},
|
|
</if>
|
|
|
|
<if test="recipient_id != null">
|
|
recipient_id = #{recipient_id},
|
|
</if>
|
|
|
|
<if test="category != null">
|
|
category = #{category},
|
|
</if>
|
|
|
|
<if test="project_id != null">
|
|
project_id = #{project_id},
|
|
</if>
|
|
|
|
<if test="project_subsystem_id != null">
|
|
project_subsystem_id = #{project_subsystem_id},
|
|
</if>
|
|
|
|
<if test="project_submodule_id != null">
|
|
project_submodule_id = #{project_submodule_id},
|
|
</if>
|
|
|
|
<if test="application_time != null">
|
|
application_time = #{application_time},
|
|
</if>
|
|
|
|
<if test="review_time != null">
|
|
review_time = #{review_time},
|
|
</if>
|
|
|
|
<if test="review_result != null">
|
|
review_result = #{review_result},
|
|
</if>
|
|
|
|
<if test="is_delete != null">
|
|
is_delete = #{is_delete},
|
|
</if>
|
|
|
|
</set>
|
|
where id = #{id}
|
|
</insert>
|
|
|
|
|
|
</mapper> |