2024-08-25 13:31:15 +08:00
|
|
|
<?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.ProProjectInfoSubdeptsUsersMapper">
|
|
|
|
|
|
|
|
<resultMap type="ProProjectInfoSubdeptsUsers" id="ProProjectInfoSubdeptsUsersResult">
|
|
|
|
<result property="id" column="id" />
|
2024-09-09 23:58:23 +08:00
|
|
|
<result property="comId" column="com_id" />
|
2024-08-25 13:31:15 +08:00
|
|
|
<result property="projectId" column="project_id" />
|
2024-08-25 21:25:51 +08:00
|
|
|
<result property="projectName" column="project_name" />
|
2024-08-25 13:31:15 +08:00
|
|
|
<result property="subDeptId" column="sub_dept_id" />
|
2024-09-09 23:58:23 +08:00
|
|
|
<result property="subDeptType" column="sub_dept_type" />
|
2024-08-25 13:31:15 +08:00
|
|
|
<result property="subDeptName" column="sub_dept_name" />
|
|
|
|
<result property="userId" column="user_id" />
|
2024-09-09 23:58:23 +08:00
|
|
|
<result property="userType" column="user_type" />
|
2024-08-25 13:31:15 +08:00
|
|
|
<result property="userName" column="user_name" />
|
|
|
|
<result property="craftType" column="craft_type" />
|
|
|
|
<result property="craftPost" column="craft_post" />
|
|
|
|
<result property="eduStatus" column="edu_status" />
|
|
|
|
<result property="eduFilePath" column="edu_file_path" />
|
|
|
|
<result property="eduSignPath" column="edu_sign_path" />
|
|
|
|
<result property="eduDate" column="edu_date" />
|
|
|
|
<result property="approveStatus" column="approve_status" />
|
|
|
|
<result property="useStatus" column="use_status" />
|
|
|
|
<result property="subStep" column="sub_step" />
|
|
|
|
<result property="illnessStatus" column="illness_status" />
|
|
|
|
<result property="supIllnessStatus" column="sup_illness_status" />
|
|
|
|
<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="selectProProjectInfoSubdeptsUsersVo">
|
2024-09-09 23:58:23 +08:00
|
|
|
select psu.id, psu.com_id, psu.project_id, pi.project_name, psu.sub_dept_id, psu.sub_dept_type, psu.sub_dept_name, psu.user_id, psu.user_type, psu.user_name, psu.craft_type, psu.craft_post, psu.edu_status, psu.edu_file_path, psu.edu_sign_path, psu.edu_date, psu.approve_status, psu.use_status, psu.sub_step, psu.illness_status, psu.sup_illness_status, psu.is_del, psu.create_by, psu.create_time, psu.update_by, psu.update_time, psu.remark from pro_project_info_subdepts_users psu
|
2024-08-25 21:25:51 +08:00
|
|
|
left join pro_project_info pi on pi.id = psu.project_id
|
2024-09-21 21:58:31 +08:00
|
|
|
left join sys_dept sd on sd.dept_id = pi.com_id
|
2024-08-25 13:31:15 +08:00
|
|
|
</sql>
|
|
|
|
|
|
|
|
<select id="selectProProjectInfoSubdeptsUsersList" parameterType="ProProjectInfoSubdeptsUsers" resultMap="ProProjectInfoSubdeptsUsersResult">
|
|
|
|
<include refid="selectProProjectInfoSubdeptsUsersVo"/>
|
2024-08-25 21:25:51 +08:00
|
|
|
<where>
|
2024-09-09 23:58:23 +08:00
|
|
|
<if test="comId != null "> and psu.com_id = #{comId}</if>
|
2024-08-25 21:25:51 +08:00
|
|
|
<if test="projectId != null "> and psu.project_id = #{projectId}</if>
|
|
|
|
<if test="projectName != null and projectName != ''"> and pi.project_name like concat('%', #{projectName}, '%')</if>
|
|
|
|
<if test="subDeptId != null "> and psu.sub_dept_id = #{subDeptId}</if>
|
|
|
|
<if test="subDeptName != null and subDeptName != ''"> and psu.sub_dept_name like concat('%', #{subDeptName}, '%')</if>
|
|
|
|
<if test="userId != null "> and psu.user_id = #{userId}</if>
|
|
|
|
<if test="userName != null and userName != ''"> and psu.user_name like concat('%', #{userName}, '%')</if>
|
|
|
|
<if test="craftType != null and craftType != ''"> and psu.craft_type = #{craftType}</if>
|
|
|
|
<if test="craftPost != null and craftPost != ''"> and psu.craft_post = #{craftPost}</if>
|
|
|
|
<if test="eduStatus != null and eduStatus != ''"> and psu.edu_status = #{eduStatus}</if>
|
|
|
|
<if test="approveStatus != null "> and psu.approve_status = #{approveStatus}</if>
|
|
|
|
<if test="useStatus != null and useStatus != ''"> and psu.use_status = #{useStatus}</if>
|
|
|
|
<if test="subStep != null "> and psu.sub_step = #{subStep}</if>
|
|
|
|
<if test="illnessStatus != null "> and psu.illness_status = #{illnessStatus}</if>
|
|
|
|
<if test="supIllnessStatus != null "> and psu.sup_illness_status = #{supIllnessStatus}</if>
|
|
|
|
<if test="isDel != null "> and psu.is_del = #{isDel}</if>
|
2024-08-25 13:31:15 +08:00
|
|
|
</where>
|
2024-08-25 21:25:51 +08:00
|
|
|
order by psu.id desc
|
2024-08-25 13:31:15 +08:00
|
|
|
</select>
|
|
|
|
|
|
|
|
<select id="selectProProjectInfoSubdeptsUsersById" parameterType="Long" resultMap="ProProjectInfoSubdeptsUsersResult">
|
|
|
|
<include refid="selectProProjectInfoSubdeptsUsersVo"/>
|
2024-08-25 21:25:51 +08:00
|
|
|
where psu.id = #{id}
|
2024-08-25 13:31:15 +08:00
|
|
|
</select>
|
|
|
|
|
|
|
|
<insert id="insertProProjectInfoSubdeptsUsers" parameterType="ProProjectInfoSubdeptsUsers" useGeneratedKeys="true" keyProperty="id">
|
|
|
|
insert into pro_project_info_subdepts_users
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
2024-09-09 23:58:23 +08:00
|
|
|
<if test="comId != null">com_id,</if>
|
2024-08-25 13:31:15 +08:00
|
|
|
<if test="projectId != null">project_id,</if>
|
|
|
|
<if test="subDeptId != null">sub_dept_id,</if>
|
|
|
|
<if test="subDeptName != null">sub_dept_name,</if>
|
|
|
|
<if test="userId != null">user_id,</if>
|
|
|
|
<if test="userName != null">user_name,</if>
|
|
|
|
<if test="craftType != null">craft_type,</if>
|
|
|
|
<if test="craftPost != null">craft_post,</if>
|
|
|
|
<if test="eduStatus != null">edu_status,</if>
|
|
|
|
<if test="eduFilePath != null">edu_file_path,</if>
|
|
|
|
<if test="eduSignPath != null">edu_sign_path,</if>
|
|
|
|
<if test="eduDate != null">edu_date,</if>
|
|
|
|
<if test="approveStatus != null">approve_status,</if>
|
|
|
|
<if test="useStatus != null">use_status,</if>
|
|
|
|
<if test="subStep != null">sub_step,</if>
|
|
|
|
<if test="illnessStatus != null">illness_status,</if>
|
|
|
|
<if test="supIllnessStatus != null">sup_illness_status,</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=",">
|
2024-09-09 23:58:23 +08:00
|
|
|
<if test="comId != null">#{comId},</if>
|
2024-08-25 13:31:15 +08:00
|
|
|
<if test="projectId != null">#{projectId},</if>
|
|
|
|
<if test="subDeptId != null">#{subDeptId},</if>
|
|
|
|
<if test="subDeptName != null">#{subDeptName},</if>
|
|
|
|
<if test="userId != null">#{userId},</if>
|
|
|
|
<if test="userName != null">#{userName},</if>
|
|
|
|
<if test="craftType != null">#{craftType},</if>
|
|
|
|
<if test="craftPost != null">#{craftPost},</if>
|
|
|
|
<if test="eduStatus != null">#{eduStatus},</if>
|
|
|
|
<if test="eduFilePath != null">#{eduFilePath},</if>
|
|
|
|
<if test="eduSignPath != null">#{eduSignPath},</if>
|
|
|
|
<if test="eduDate != null">#{eduDate},</if>
|
|
|
|
<if test="approveStatus != null">#{approveStatus},</if>
|
|
|
|
<if test="useStatus != null">#{useStatus},</if>
|
|
|
|
<if test="subStep != null">#{subStep},</if>
|
|
|
|
<if test="illnessStatus != null">#{illnessStatus},</if>
|
|
|
|
<if test="supIllnessStatus != null">#{supIllnessStatus},</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="updateProProjectInfoSubdeptsUsers" parameterType="ProProjectInfoSubdeptsUsers">
|
|
|
|
update pro_project_info_subdepts_users
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
2024-09-09 23:58:23 +08:00
|
|
|
<if test="comId != null">com_id = #{comId},</if>
|
2024-08-25 13:31:15 +08:00
|
|
|
<if test="projectId != null">project_id = #{projectId},</if>
|
|
|
|
<if test="subDeptId != null">sub_dept_id = #{subDeptId},</if>
|
|
|
|
<if test="subDeptName != null">sub_dept_name = #{subDeptName},</if>
|
|
|
|
<if test="userId != null">user_id = #{userId},</if>
|
|
|
|
<if test="userName != null">user_name = #{userName},</if>
|
|
|
|
<if test="craftType != null">craft_type = #{craftType},</if>
|
|
|
|
<if test="craftPost != null">craft_post = #{craftPost},</if>
|
|
|
|
<if test="eduStatus != null">edu_status = #{eduStatus},</if>
|
|
|
|
<if test="eduFilePath != null">edu_file_path = #{eduFilePath},</if>
|
|
|
|
<if test="eduSignPath != null">edu_sign_path = #{eduSignPath},</if>
|
|
|
|
<if test="eduDate != null">edu_date = #{eduDate},</if>
|
|
|
|
<if test="approveStatus != null">approve_status = #{approveStatus},</if>
|
|
|
|
<if test="useStatus != null">use_status = #{useStatus},</if>
|
|
|
|
<if test="subStep != null">sub_step = #{subStep},</if>
|
|
|
|
<if test="illnessStatus != null">illness_status = #{illnessStatus},</if>
|
|
|
|
<if test="supIllnessStatus != null">sup_illness_status = #{supIllnessStatus},</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="deleteProProjectInfoSubdeptsUsersById" parameterType="Long">
|
|
|
|
delete from pro_project_info_subdepts_users where id = #{id}
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
<delete id="deleteProProjectInfoSubdeptsUsersByIds" parameterType="String">
|
|
|
|
delete from pro_project_info_subdepts_users where id in
|
|
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
|
#{id}
|
|
|
|
</foreach>
|
|
|
|
</delete>
|
|
|
|
</mapper>
|