| | |
| | | <!--@Table se_issue_report--> |
| | | <id column="id" jdbcType="BIGINT" property="id" /> |
| | | <result column="content" jdbcType="VARCHAR" property="content" /> |
| | | <result column="images" jdbcType="VARCHAR" property="images" /> |
| | | <result column="audios" jdbcType="VARCHAR" property="audios" /> |
| | | <result column="videos" jdbcType="VARCHAR" property="videos" /> |
| | | <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="client_id" jdbcType="BIGINT" property="clientId" /> |
| | |
| | | audios, videos, lng, |
| | | lat, client_id, report_time, |
| | | phone, `state`) |
| | | values (#{id,jdbcType=BIGINT}, #{content,jdbcType=VARCHAR}, #{images,jdbcType=VARCHAR}, |
| | | #{audios,jdbcType=VARCHAR}, #{videos,jdbcType=VARCHAR}, #{lng,jdbcType=DECIMAL}, |
| | | 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}, #{clientId,jdbcType=BIGINT}, #{reportTime,jdbcType=TIMESTAMP}, |
| | | #{phone,jdbcType=VARCHAR}, #{state,jdbcType=TINYINT}) |
| | | </insert> |
| | |
| | | #{content,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="images != null"> |
| | | #{images,jdbcType=VARCHAR}, |
| | | #{images,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, |
| | | </if> |
| | | <if test="audios != null"> |
| | | #{audios,jdbcType=VARCHAR}, |
| | | #{audios,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, |
| | | </if> |
| | | <if test="videos != null"> |
| | | #{videos,jdbcType=VARCHAR}, |
| | | #{videos,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, |
| | | </if> |
| | | <if test="lng != null"> |
| | | #{lng,jdbcType=DECIMAL}, |
| | |
| | | content = #{content,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="images != null"> |
| | | images = #{images,jdbcType=VARCHAR}, |
| | | images = #{images,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, |
| | | </if> |
| | | <if test="audios != null"> |
| | | audios = #{audios,jdbcType=VARCHAR}, |
| | | audios = #{audios,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, |
| | | </if> |
| | | <if test="videos != null"> |
| | | videos = #{videos,jdbcType=VARCHAR}, |
| | | videos = #{videos,jdbcType=JAVA_OBJECT, typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler}, |
| | | </if> |
| | | <if test="lng != null"> |
| | | lng = #{lng,jdbcType=DECIMAL}, |
| | |
| | | <!--@mbg.generated--> |
| | | update se_issue_report |
| | | set content = #{content,jdbcType=VARCHAR}, |
| | | images = #{images,jdbcType=VARCHAR}, |
| | | audios = #{audios,jdbcType=VARCHAR}, |
| | | videos = #{videos,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}, |
| | | client_id = #{clientId,jdbcType=BIGINT}, |
| | |
| | | `state` = #{state,jdbcType=TINYINT} |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |
| | | |
| | | <!--根据指定条件获取农户问题上报数量--> |
| | | <select id="getIssueReportsCount" resultType="java.lang.Long"> |
| | | SELECT COUNT(*) AS recordCount |
| | | FROM se_issue_report rpt |
| | | LEFT JOIN se_client cli ON cli.id = rpt.client_id |
| | | <where> |
| | | AND rpt.state != 3 |
| | | |
| | | <if test="clientId != null"> |
| | | AND rpt.client_id = #{clientId} |
| | | </if> |
| | | |
| | | <if test="clientName != null and clientName != ''"> |
| | | AND cli.name like CONCAT('%', #{clientName}, '%') |
| | | </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.voSe.VoIssueReport" > |
| | | SELECT |
| | | rpt.id AS issueReportId, |
| | | cli.name AS clientName, |
| | | rpt.phone, |
| | | rpt.report_time AS reportTime, |
| | | rpt.content, |
| | | rpt.images, |
| | | rpt.audios, |
| | | rpt.videos, |
| | | CASE |
| | | WHEN rpt.state = 1 THEN '未受理' |
| | | WHEN rpt.state = 2 THEN '已受理' |
| | | END AS state |
| | | FROM se_issue_report rpt |
| | | LEFT JOIN se_client cli ON cli.id = rpt.client_id |
| | | <where> |
| | | AND rpt.state != 3 |
| | | |
| | | <if test="clientId != null"> |
| | | AND rpt.client_id = #{clientId} |
| | | </if> |
| | | |
| | | <if test="clientName != null and clientName != ''"> |
| | | AND cli.name like CONCAT('%', #{clientName}, '%') |
| | | </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> |
| | | |
| | | <!--逻辑删除一个农户问题上报--> |
| | | <update id="deleteIssueReport"> |
| | | UPDATE se_issue_report SET state = 3 WHERE id = #{issueReportId} |
| | | </update> |
| | | </mapper> |