lin
2024-04-11 440a38bf126ccc8b19352ee6f89ef3141775ec63
报事报修+消防自查+二手校验 添加housecode 查询
4 files modified
12 ■■■■■ changed files
src/main/java/org/springblade/modules/task/mapper/TaskLabelReportingEventMapper.xml 5 ●●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/task/mapper/TaskNoFraudReportingMapper.xml 1 ●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/task/mapper/TaskReportForRepairsMapper.xml 4 ●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/task/vo/TaskLabelReportingEventVO.java 2 ●●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/task/mapper/TaskLabelReportingEventMapper.xml
@@ -58,6 +58,11 @@
        <if test="taskLabelReportingEvent.userId != null and taskLabelReportingEvent.userId != ''">
            AND jtlre.user_id = #{taskLabelReportingEvent.userId}
        </if>
        <if test="taskLabelReportingEvent.houseCode != null  and taskLabelReportingEvent.houseCode != ''">
            and jp.house_code = #{taskLabelReportingEvent.houseCode}
        </if>
        <if test="taskLabelReportingEvent.eventType != null and taskLabelReportingEvent.eventType != ''">
            AND jtlre.event_type = #{taskLabelReportingEvent.eventType}
        </if>
src/main/java/org/springblade/modules/task/mapper/TaskNoFraudReportingMapper.xml
@@ -210,6 +210,7 @@
        jp.location,
        jg.grid_name,
        jp.principal,
        jp.no_explosion_category,
        jp.principal_phone,
        br.town_name,
        br.village_name,
src/main/java/org/springblade/modules/task/mapper/TaskReportForRepairsMapper.xml
@@ -171,6 +171,10 @@
            AND jtrfr.create_user = #{vo.createUser}
        </if>
        <if test="vo.houseCode != null and vo.houseCode != ''">
            and jtrfr.address_code = #{vo.houseCode}
        </if>
        <if test="vo.streetName != null and vo.streetName != ''">
            AND br.town_name like concat('%',#{vo.streetName},'%')
        </if>
src/main/java/org/springblade/modules/task/vo/TaskLabelReportingEventVO.java
@@ -86,4 +86,6 @@
     */
    private String communityCode;
    private String houseCode;
}