96 lines
4.8 KiB
XML
96 lines
4.8 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.yanzhu.manage.mapper.ProProjectInfoDeptsMapper">
|
||
|
|
||
|
<resultMap type="ProProjectInfoDepts" id="ProProjectInfoDeptsResult">
|
||
|
<result property="id" column="id" />
|
||
|
<result property="projectId" column="project_id" />
|
||
|
<result property="deptType" column="dept_type" />
|
||
|
<result property="deptName" column="dept_name" />
|
||
|
<result property="deptCode" column="dept_code" />
|
||
|
<result property="isDel" column="is_del" />
|
||
|
<result property="createBy" column="create_by" />
|
||
|
<result property="createTime" column="create_time" />
|
||
|
<result property="updateBy" column="update_by" />
|
||
|
<result property="updateTime" column="update_time" />
|
||
|
<result property="remark" column="remark" />
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="selectProProjectInfoDeptsVo">
|
||
|
select id, project_id, dept_type, dept_name, dept_code, is_del, create_by, create_time, update_by, update_time, remark from pro_project_info_depts
|
||
|
</sql>
|
||
|
|
||
|
<select id="selectProProjectInfoDeptsList" parameterType="ProProjectInfoDepts" resultMap="ProProjectInfoDeptsResult">
|
||
|
<include refid="selectProProjectInfoDeptsVo"/>
|
||
|
<where>
|
||
|
<if test="projectId != null "> and project_id = #{projectId}</if>
|
||
|
<if test="deptType != null and deptType != ''"> and dept_type = #{deptType}</if>
|
||
|
<if test="deptName != null and deptName != ''"> and dept_name like concat('%', #{deptName}, '%')</if>
|
||
|
<if test="deptCode != null and deptCode != ''"> and dept_code = #{deptCode}</if>
|
||
|
<if test="isDel != null "> and is_del = #{isDel}</if>
|
||
|
</where>
|
||
|
</select>
|
||
|
|
||
|
<select id="selectProProjectInfoDeptsById" parameterType="Long" resultMap="ProProjectInfoDeptsResult">
|
||
|
<include refid="selectProProjectInfoDeptsVo"/>
|
||
|
where id = #{id}
|
||
|
</select>
|
||
|
|
||
|
<insert id="insertProProjectInfoDepts" parameterType="ProProjectInfoDepts" useGeneratedKeys="true" keyProperty="id">
|
||
|
insert into pro_project_info_depts
|
||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
<if test="projectId != null">project_id,</if>
|
||
|
<if test="deptType != null">dept_type,</if>
|
||
|
<if test="deptName != null">dept_name,</if>
|
||
|
<if test="deptCode != null">dept_code,</if>
|
||
|
<if test="isDel != null">is_del,</if>
|
||
|
<if test="createBy != null">create_by,</if>
|
||
|
<if test="createTime != null">create_time,</if>
|
||
|
<if test="updateBy != null">update_by,</if>
|
||
|
<if test="updateTime != null">update_time,</if>
|
||
|
<if test="remark != null">remark,</if>
|
||
|
</trim>
|
||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
<if test="projectId != null">#{projectId},</if>
|
||
|
<if test="deptType != null">#{deptType},</if>
|
||
|
<if test="deptName != null">#{deptName},</if>
|
||
|
<if test="deptCode != null">#{deptCode},</if>
|
||
|
<if test="isDel != null">#{isDel},</if>
|
||
|
<if test="createBy != null">#{createBy},</if>
|
||
|
<if test="createTime != null">#{createTime},</if>
|
||
|
<if test="updateBy != null">#{updateBy},</if>
|
||
|
<if test="updateTime != null">#{updateTime},</if>
|
||
|
<if test="remark != null">#{remark},</if>
|
||
|
</trim>
|
||
|
</insert>
|
||
|
|
||
|
<update id="updateProProjectInfoDepts" parameterType="ProProjectInfoDepts">
|
||
|
update pro_project_info_depts
|
||
|
<trim prefix="SET" suffixOverrides=",">
|
||
|
<if test="projectId != null">project_id = #{projectId},</if>
|
||
|
<if test="deptType != null">dept_type = #{deptType},</if>
|
||
|
<if test="deptName != null">dept_name = #{deptName},</if>
|
||
|
<if test="deptCode != null">dept_code = #{deptCode},</if>
|
||
|
<if test="isDel != null">is_del = #{isDel},</if>
|
||
|
<if test="createBy != null">create_by = #{createBy},</if>
|
||
|
<if test="createTime != null">create_time = #{createTime},</if>
|
||
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||
|
<if test="remark != null">remark = #{remark},</if>
|
||
|
</trim>
|
||
|
where id = #{id}
|
||
|
</update>
|
||
|
|
||
|
<delete id="deleteProProjectInfoDeptsById" parameterType="Long">
|
||
|
delete from pro_project_info_depts where id = #{id}
|
||
|
</delete>
|
||
|
|
||
|
<delete id="deleteProProjectInfoDeptsByIds" parameterType="String">
|
||
|
delete from pro_project_info_depts where id in
|
||
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||
|
#{id}
|
||
|
</foreach>
|
||
|
</delete>
|
||
|
</mapper>
|