YZProjectCloud/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProProjectInfoSubdeptsUsers...

186 lines
11 KiB
XML
Raw Normal View History

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" />
<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-10-01 16:35:07 +08:00
<result property="subDeptGroup" column="sub_dept_group" />
2024-10-08 01:07:33 +08:00
<result property="subDeptGroupName" column="sub_dept_group_name" />
2024-08-25 13:31:15 +08:00
<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" />
2024-10-08 01:07:33 +08:00
2024-08-25 13:31:15 +08:00
<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" />
2024-10-08 01:07:33 +08:00
<association property="user" javaType="com.yanzhu.system.api.domain.SysUser" resultMap="com.yanzhu.system.mapper.SysUserMapper.SysUserResult"></association>
2024-08-25 13:31:15 +08:00
</resultMap>
<sql id="selectProProjectInfoSubdeptsUsersVo">
2024-10-08 01:07:33 +08:00
select pi.project_name,
psu.id, psu.com_id, psu.project_id, psu.sub_dept_id, psu.sub_dept_type, psu.sub_dept_name, psu.user_id,
psu.sub_dept_group, psu.sub_dept_group_name, psu.craft_type, psu.craft_post, psu.edu_status,
2024-10-01 16:35:07 +08:00
psu.edu_file_path, psu.edu_sign_path, psu.edu_date, psu.approve_status, psu.use_status, psu.sub_step, psu.illness_status,
2024-10-08 01:07:33 +08:00
psu.sup_illness_status, psu.is_del, psu.create_by, psu.create_time, psu.update_by, psu.update_time, psu.remark
2024-10-01 16:35:07 +08:00
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-10-08 01:07:33 +08:00
<if test="comId != null "> and com_id = #{comId}</if>
<if test="projectId != null "> and project_id = #{projectId}</if>
<if test="subDeptId != null "> and sub_dept_id = #{subDeptId}</if>
<if test="subDeptType != null and subDeptType != ''"> and sub_dept_type = #{subDeptType}</if>
<if test="subDeptName != null and subDeptName != ''"> and sub_dept_name like concat('%', #{subDeptName}, '%')</if>
<if test="userId != null "> and user_id = #{userId}</if>
<if test="subDeptGroup != null "> and sub_dept_group = #{subDeptGroup}</if>
<if test="subDeptGroupName != null and subDeptGroupName != ''"> and sub_dept_group_name like concat('%', #{subDeptGroupName}, '%')</if>
<if test="craftType != null and craftType != ''"> and craft_type = #{craftType}</if>
<if test="craftPost != null and craftPost != ''"> and craft_post = #{craftPost}</if>
<if test="eduStatus != null and eduStatus != ''"> and edu_status = #{eduStatus}</if>
<if test="eduFilePath != null and eduFilePath != ''"> and edu_file_path = #{eduFilePath}</if>
<if test="eduSignPath != null and eduSignPath != ''"> and edu_sign_path = #{eduSignPath}</if>
<if test="eduDate != null "> and edu_date = #{eduDate}</if>
<if test="approveStatus != null "> and approve_status = #{approveStatus}</if>
<if test="useStatus != null and useStatus != ''"> and use_status = #{useStatus}</if>
<if test="subStep != null "> and sub_step = #{subStep}</if>
<if test="illnessStatus != null "> and illness_status = #{illnessStatus}</if>
<if test="supIllnessStatus != null "> and sup_illness_status = #{supIllnessStatus}</if>
<if test="isDel != null "> and is_del = #{isDel}</if>
2024-08-25 13:31:15 +08:00
</where>
</select>
2024-10-08 01:07:33 +08:00
2024-08-25 13:31:15 +08:00
<select id="selectProProjectInfoSubdeptsUsersById" parameterType="Long" resultMap="ProProjectInfoSubdeptsUsersResult">
<include refid="selectProProjectInfoSubdeptsUsersVo"/>
2024-10-08 01:07:33 +08:00
where id = #{id}
2024-08-25 13:31:15 +08:00
</select>
2024-10-08 01:07:33 +08:00
2024-08-25 13:31:15 +08:00
<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>
2024-10-01 16:35:07 +08:00
<if test="subDeptType != null">sub_dept_type,</if>
2024-08-25 13:31:15 +08:00
<if test="subDeptName != null">sub_dept_name,</if>
<if test="userId != null">user_id,</if>
2024-10-01 16:35:07 +08:00
<if test="subDeptGroup != null">sub_dept_group,</if>
<if test="subDeptGroupName != null">sub_dept_group_name,</if>
2024-08-25 13:31:15 +08:00
<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>
2024-10-08 01:07:33 +08:00
</trim>
2024-08-25 13:31:15 +08:00
<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>
2024-10-01 16:35:07 +08:00
<if test="subDeptType != null">#{subDeptType},</if>
2024-08-25 13:31:15 +08:00
<if test="subDeptName != null">#{subDeptName},</if>
<if test="userId != null">#{userId},</if>
2024-10-01 16:35:07 +08:00
<if test="subDeptGroup != null">#{subDeptGroup},</if>
<if test="subDeptGroupName != null">#{subDeptGroupName},</if>
2024-08-25 13:31:15 +08:00
<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>
2024-10-08 01:07:33 +08:00
</trim>
2024-08-25 13:31:15 +08:00
</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>
2024-10-01 16:35:07 +08:00
<if test="subDeptType != null">sub_dept_type = #{subDeptType},</if>
2024-08-25 13:31:15 +08:00
<if test="subDeptName != null">sub_dept_name = #{subDeptName},</if>
<if test="userId != null">user_id = #{userId},</if>
2024-10-01 16:35:07 +08:00
<if test="subDeptGroup != null">sub_dept_group = #{subDeptGroup},</if>
<if test="subDeptGroupName != null">sub_dept_group_name = #{subDeptGroupName},</if>
2024-08-25 13:31:15 +08:00
<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>
2024-09-22 21:18:11 +08:00
<select id="findUserByUserPhone" parameterType="String" resultType="int">
select count(1) from sys_user where phonenumber=#{phonenumber}
</select>
2024-08-25 13:31:15 +08:00
</mapper>