From 7634d7ff15b1fa84ea84a51a1ba6e45b11a4aa21 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期日, 27 四月 2025 11:17:34 +0800 Subject: [PATCH] SSO登录逻辑再修改 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeIssueReportMapper.xml | 291 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 291 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeIssueReportMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeIssueReportMapper.xml new file mode 100644 index 0000000..9e2323e --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeIssueReportMapper.xml @@ -0,0 +1,291 @@ +<?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.dy.pipIrrGlobal.daoOp.OpeIssueReportMapper"> + <resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoOp.OpeIssueReport"> + <!--@mbg.generated--> + <!--@Table ope_issue_report--> + <id column="id" jdbcType="BIGINT" property="id" /> + <result column="content" jdbcType="VARCHAR" property="content" /> + <result column="images" jdbcType="JAVA_OBJECT" typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler" property="images" /> + <result column="audios" jdbcType="JAVA_OBJECT" typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler" property="audios" /> + <result column="videos" jdbcType="JAVA_OBJECT" typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler" property="videos" /> + <result column="lng" jdbcType="DECIMAL" property="lng" /> + <result column="lat" jdbcType="DECIMAL" property="lat" /> + <result column="inspector_id" jdbcType="BIGINT" property="inspectorId" /> + <result column="report_time" jdbcType="TIMESTAMP" property="reportTime" /> + <result column="phone" jdbcType="VARCHAR" property="phone" /> + <result column="state" jdbcType="TINYINT" property="state" /> + </resultMap> + <sql id="Base_Column_List"> + <!--@mbg.generated--> + id, content, images, audios, videos, lng, lat, inspector_id, report_time, phone, + `state` + </sql> + <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> + <!--@mbg.generated--> + select + <include refid="Base_Column_List" /> + from ope_issue_report + where id = #{id,jdbcType=BIGINT} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> + <!--@mbg.generated--> + delete from ope_issue_report + where id = #{id,jdbcType=BIGINT} + </delete> + <insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeIssueReport"> + <!--@mbg.generated--> + insert into ope_issue_report (id, content, images, + audios, videos, lng, + lat, inspector_id, report_time, + phone, `state`) + values (#{id,jdbcType=BIGINT}, #{content,jdbcType=VARCHAR}, #{images,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + #{audios,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, #{videos,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, #{lng,jdbcType=DECIMAL}, + #{lat,jdbcType=DECIMAL}, #{inspectorId,jdbcType=BIGINT}, #{reportTime,jdbcType=TIMESTAMP}, + #{phone,jdbcType=VARCHAR}, #{state,jdbcType=TINYINT}) + </insert> + <insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeIssueReport"> + <!--@mbg.generated--> + insert into ope_issue_report + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="id != null"> + id, + </if> + <if test="content != null"> + content, + </if> + <if test="images != null"> + images, + </if> + <if test="audios != null"> + audios, + </if> + <if test="videos != null"> + videos, + </if> + <if test="lng != null"> + lng, + </if> + <if test="lat != null"> + lat, + </if> + <if test="inspectorId != null"> + inspector_id, + </if> + <if test="reportTime != null"> + report_time, + </if> + <if test="phone != null"> + phone, + </if> + <if test="state != null"> + `state`, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="id != null"> + #{id,jdbcType=BIGINT}, + </if> + <if test="content != null"> + #{content,jdbcType=VARCHAR}, + </if> + <if test="images != null"> + #{images,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + </if> + <if test="audios != null"> + #{audios,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + </if> + <if test="videos != null"> + #{videos,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + </if> + <if test="lng != null"> + #{lng,jdbcType=DECIMAL}, + </if> + <if test="lat != null"> + #{lat,jdbcType=DECIMAL}, + </if> + <if test="inspectorId != null"> + #{inspectorId,jdbcType=BIGINT}, + </if> + <if test="reportTime != null"> + #{reportTime,jdbcType=TIMESTAMP}, + </if> + <if test="phone != null"> + #{phone,jdbcType=VARCHAR}, + </if> + <if test="state != null"> + #{state,jdbcType=TINYINT}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeIssueReport"> + <!--@mbg.generated--> + update ope_issue_report + <set> + <if test="content != null"> + content = #{content,jdbcType=VARCHAR}, + </if> + <if test="images != null"> + images = #{images,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + </if> + <if test="audios != null"> + audios = #{audios,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + </if> + <if test="videos != null"> + videos = #{videos,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + </if> + <if test="lng != null"> + lng = #{lng,jdbcType=DECIMAL}, + </if> + <if test="lat != null"> + lat = #{lat,jdbcType=DECIMAL}, + </if> + <if test="inspectorId != null"> + inspector_id = #{inspectorId,jdbcType=BIGINT}, + </if> + <if test="reportTime != null"> + report_time = #{reportTime,jdbcType=TIMESTAMP}, + </if> + <if test="phone != null"> + phone = #{phone,jdbcType=VARCHAR}, + </if> + <if test="state != null"> + `state` = #{state,jdbcType=TINYINT}, + </if> + </set> + where id = #{id,jdbcType=BIGINT} + </update> + <update id="updateByPrimaryKey" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeIssueReport"> + <!--@mbg.generated--> + update ope_issue_report + set content = #{content,jdbcType=VARCHAR}, + images = #{images,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + audios = #{audios,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + videos = #{videos,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, + lng = #{lng,jdbcType=DECIMAL}, + lat = #{lat,jdbcType=DECIMAL}, + inspector_id = #{inspectorId,jdbcType=BIGINT}, + report_time = #{reportTime,jdbcType=TIMESTAMP}, + phone = #{phone,jdbcType=VARCHAR}, + `state` = #{state,jdbcType=TINYINT} + where id = #{id,jdbcType=BIGINT} + </update> + + <!--鏍规嵁鎸囧畾鏉′欢鑾峰彇宸℃鍛橀棶棰樹笂鎶ユ暟閲�--> + <select id="getIssueReportsCount" resultType="java.lang.Long"> + SELECT COUNT(*) AS recordCount + FROM ope_issue_report rpt + LEFT JOIN ba_user us ON us.id = rpt.inspector_id + LEFT JOIN ope_report_reply rpy ON rpy.report_id = rpt.id + <where> + AND rpt.state != 3 + + <if test="inspectorId != null"> + AND rpt.inspector_id = #{inspectorId} + </if> + + <if test="inspectorName != null and inspectorName != ''"> + AND us.name like CONCAT('%', #{inspectorName}, '%') + </if> + + <if test="content != null and content != ''"> + AND rpt.content like CONCAT('%', #{content}, '%') + </if> + + <if test="timeStart != null and timeStop != null "> + AND rpt.report_time BETWEEN #{timeStart} AND #{timeStop} + </if> + + <if test="state != null"> + AND rpt.state = #{state} + </if> + </where> + </select> + + <!--鏍规嵁鎸囧畾鏉′欢鑾峰彇宸℃鍛橀棶棰樹笂鎶�--> + <select id="getIssueReports" resultType="com.dy.pipIrrGlobal.voOp.VoIssueReport_temp"> + SELECT + rpt.id AS issueReportId, + us.name AS inspectorName, + rpt.phone, + rpt.report_time AS reportTime, + rpt.content, + rpt.images, + rpt.audios, + rpt.videos, + rpy.reply_time AS replyTime, + rpy.reply_content AS replyContent, + rpy.replier_id AS replyPersonId, + rpt.state AS stateId, + CASE + WHEN rpt.state = 1 THEN '鏈彈鐞�' + WHEN rpt.state = 2 THEN '宸插彈鐞�' + END AS state + FROM ope_issue_report rpt + LEFT JOIN ba_user us ON us.id = rpt.inspector_id + LEFT JOIN ope_report_reply rpy ON rpy.report_id = rpt.id + <where> + AND rpt.state != 3 + + <if test="inspectorId != null"> + AND rpt.inspector_id = #{inspectorId} + </if> + + <if test="inspectorName != null and inspectorName != ''"> + AND us.name like CONCAT('%', #{inspectorName}, '%') + </if> + + <if test="content != null and content != ''"> + AND rpt.content like CONCAT('%', #{content}, '%') + </if> + + <if test="timeStart != null and timeStop != null "> + AND rpt.report_time BETWEEN #{timeStart} AND #{timeStop} + </if> + + <if test="state != null"> + AND rpt.state = #{state} + </if> + </where> + ORDER BY rpt.report_time DESC + <trim prefix="limit "> + <if test="start != null and count != null"> + #{start,javaType=Integer,jdbcType=INTEGER}, #{count,javaType=Integer,jdbcType=INTEGER} + </if> + </trim> + </select> + + <!--鏍规嵁涓婃姤ID鍙婂贰妫�鍛業D鑾峰彇鏈垹闄ょ殑涓婃姤锛屽垹闄や笂鎶ュ垽鏂娇鐢�--> + <select id="getReport" resultType="com.dy.pipIrrGlobal.pojoOp.OpeIssueReport"> + SELECT * FROM ope_issue_report WHERE state != 3 AND id = #{issueReportId} AND inspector_id = #{inspectorId} + </select> + + <!--閫昏緫鍒犻櫎涓�涓啘鎴烽棶棰樹笂鎶�--> + <update id="deleteIssueReport"> + UPDATE ope_issue_report SET state = 3 WHERE id = #{issueReportId} + </update> + <!--鏍规嵁闂涓婃姤璁板綍涓婚敭鑾峰彇鑾峰彇宸℃鍛橀棶棰樹笂鎶ヨ褰曡鍥惧璞�--> + <select id="getIssueReportById" resultType="com.dy.pipIrrGlobal.voOp.VoIssueReport_temp"> + SELECT + rpt.id AS issueReportId, + us.name AS inspectorName, + rpt.phone, + rpt.report_time AS reportTime, + rpt.content, + rpt.images, + rpt.audios, + rpt.videos, + rpy.reply_time AS replyTime, + rpy.reply_content AS replyContent, + rpy.replier_id AS replyPersonId, + rpt.state AS stateId, + CASE + WHEN rpt.state = 1 THEN '鏈彈鐞�' + WHEN rpt.state = 2 THEN '宸插彈鐞�' + END AS state + FROM ope_issue_report rpt + LEFT JOIN ba_user us ON us.id = rpt.inspector_id + LEFT JOIN ope_report_reply rpy ON rpy.report_id = rpt.id + where rpt.state != 3 AND rpt.id = #{issueReportId} + </select> +</mapper> \ No newline at end of file -- Gitblit v1.8.0