Browse Source

调度记录,收费站( 剔除门架)

develop
王兴琳 10 months ago
parent
commit
549a736a4b
  1. 9
      zc-business/src/main/java/com/zc/business/controller/DcEventController.java
  2. 55
      zc-business/src/main/java/com/zc/business/domain/DcEvent.java
  3. 2
      zc-business/src/main/java/com/zc/business/mapper/DcEventMapper.java
  4. 2
      zc-business/src/main/java/com/zc/business/mapper/DcEventProcessMapper.java
  5. 2
      zc-business/src/main/java/com/zc/business/service/IDcEventProcessService.java
  6. 2
      zc-business/src/main/java/com/zc/business/service/IDcEventService.java
  7. 5
      zc-business/src/main/java/com/zc/business/service/impl/DcEventProcessServiceImpl.java
  8. 32
      zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java
  9. 2
      zc-business/src/main/java/com/zc/business/service/impl/DcFacilityServiceImpl.java
  10. 38
      zc-business/src/main/resources/mapper/business/DcEventMapper.xml
  11. 5
      zc-business/src/main/resources/mapper/business/DcEventProcessMapper.xml

9
zc-business/src/main/java/com/zc/business/controller/DcEventController.java

@ -204,4 +204,13 @@ public class DcEventController extends BaseController
public AjaxResult skipClear(@ApiParam(value="事件id", name="eventId", required=true) @RequestParam ("eventId") String eventId){
return dcEventService.skipClear(eventId);
}
@ApiOperation("调度记录-事件列表 按时间展示交通事件,默认当天时间 。可查询条件 交通事件状态 ,时间范围")
@GetMapping("/dispatchRecordEventList")
public TableDataInfo dispatchRecordEventList(DcEvent dcEvent){
List<DcEvent> list = dcEventService.dispatchRecordEventList(dcEvent);
return getDataTable(list);
}
}

55
zc-business/src/main/java/com/zc/business/domain/DcEvent.java

@ -1,16 +1,16 @@
package com.zc.business.domain;
import java.util.Date;
import java.util.List;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import com.ruoyi.common.annotation.Excel;
import java.util.Date;
import java.util.List;
/**
* 事件信息对象 dc_event
@ -156,12 +156,12 @@ public class DcEvent {
private String description;
/**
* 事件状态
事件状态
0-待确认
1-已确认
2-处理中
3-已完成
4-已撤销
* 事件状态
* 0-待确认
* 1-已确认
* 2-处理中
* 3-已完成
* 4-已撤销
*/
@ApiModelProperty("事件状态 事件状态:* 0-未解决1-已解决2-已关闭")
private Long eventState;
@ -200,7 +200,7 @@ public class DcEvent {
/**
* 是否处在隧道
*/
@Excel(name = "是否处在隧道" , readConverterExp = "0=否,1=是")
@Excel(name = "是否处在隧道", readConverterExp = "0=否,1=是")
@ApiModelProperty("是否处在隧道 0 表示 false,1 表示 true")
private Integer inTunnel;
//@Excel(name = "高速")
@ -214,7 +214,7 @@ public class DcEvent {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty("发生时间")
private Date occurrenceTime;
@Excel(name = "是否是感知事件" , readConverterExp = "0=否,1=是")
@Excel(name = "是否是感知事件", readConverterExp = "0=否,1=是")
@ApiModelProperty("是否是感知事件 0 表示 false,1 表示 true")
private Integer isPerceived;
@ -230,11 +230,11 @@ public class DcEvent {
@ApiModelProperty("事件流程")
@TableField(exist = false)
private List<DcProcessConfig> processConfigList;
@ApiModelProperty("事件标题")
@ApiModelProperty("事件标题")
private String eventTitle;
@ApiModelProperty("维度")
@ApiModelProperty("维度")
private String dimension;
@ApiModelProperty("经度")
@ApiModelProperty("经度")
private String longitude;
/**
* 2014/2/21新增
@ -291,20 +291,29 @@ public class DcEvent {
private String processNode;
/** 更新时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
/**
* 更新时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date updateTime;
/** 创建时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
/**
* 创建时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime;
/** 备注 */
/**
* 备注
*/
private String remark;
private String subclass;
@ApiModelProperty("关联管制事件id")
private String linkId;
@ApiModelProperty("关联管制事件id")
private String linkId;
@TableField(exist = false)
private List<DcEventProcess> dcEventProcessList;
}

2
zc-business/src/main/java/com/zc/business/mapper/DcEventMapper.java

@ -119,6 +119,8 @@ public interface DcEventMapper extends BaseMapper<DcEvent>
boolean completeEvent(@Param("eventId") String eventId);
int selectClearInfo(String eventId);
List<DcEvent> dispatchRecordEventList(DcEvent dcEvent);
}

2
zc-business/src/main/java/com/zc/business/mapper/DcEventProcessMapper.java

@ -87,4 +87,6 @@ public interface DcEventProcessMapper
* @return 状态 0未完成 1已完成
*/
int selectPreviousNodeStatus(@Param("eventId") String eventId, @Param("processId") Long processId);
List<DcEventProcess> selectDcEventProcessByEventId(String eventId);
}

2
zc-business/src/main/java/com/zc/business/service/IDcEventProcessService.java

@ -83,4 +83,6 @@ public interface IDcEventProcessService
* @return status 0未完成 1已完成
*/
int selectPreviousNodeStatus(String eventId, Long processId);
List<DcEventProcess> selectDcEventProcessByEventId(String eventId);
}

2
zc-business/src/main/java/com/zc/business/service/IDcEventService.java

@ -127,4 +127,6 @@ public interface IDcEventService
* @return com.ruoyi.common.core.domain.AjaxResult
*/
AjaxResult skipClear(String eventId);
List<DcEvent> dispatchRecordEventList(DcEvent dcEvent);
}

5
zc-business/src/main/java/com/zc/business/service/impl/DcEventProcessServiceImpl.java

@ -163,4 +163,9 @@ public class DcEventProcessServiceImpl implements IDcEventProcessService
return dcEventProcessMapper.selectPreviousNodeStatus(eventId,processId);
}
@Override
public List<DcEventProcess> selectDcEventProcessByEventId(String eventId) {
return dcEventProcessMapper.selectDcEventProcessByEventId(eventId);
}
}

32
zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java

@ -245,11 +245,25 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
updateDcEventState(dcEvent.getId(), 1);
dcEvent.getDcEventTrafficControl().setId(uuid);
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl());
//查询事件
DcEvent dcEvent2 = dcEventMapper.selectDcEventById(dcEventId);
//判断事件 关联事件id是否为空
if (dcEvent2.getLinkId()==null){
DcEvent dcEvent1 = new DcEvent();
dcEvent1.setId(dcEventId);//事件id
dcEvent1.setEventNature(1l);//首发事件
dcEvent1.setLinkId(uuid);//关联管制事件id
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
}else {
DcEvent dcEvent1 = new DcEvent();
dcEvent1.setId(dcEventId);//事件id
dcEvent1.setEventNature(1l);//首发事件
dcEvent1.setLinkId(dcEvent2.getLinkId()+","+uuid);//关联管制事件id
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
}
break;
}
// 插入多个收费站
@ -261,6 +275,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
dcEvent1.setEventNature(1l);//首发事件
dcEvent1.setLinkId(uuid);//关联管制事件id
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
dcEvent.getDcEventTrafficControl().setId(uuid);
dcEvent.getDcEventTrafficControl().setFacilityId(dcEvent.getDcEventTrafficControl().getFacilityIds()[0]);//取出数组字段赋值 设施id
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl());//
@ -1762,6 +1777,23 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
return AjaxResult.success("无需清障成功");
}
/**
* 调度记录
* @param dcEvent
* @return
*/
@Override
public List<DcEvent> dispatchRecordEventList(DcEvent dcEvent) {
dcEvent.setEventState(2l);
List<DcEvent> dcEvents = dcEventMapper.dispatchRecordEventList(dcEvent);
for (DcEvent event : dcEvents) {
List<DcEventProcess> dcEventProcess= dcEventProcessService.selectDcEventProcessByEventId(event.getId());
event.setDcEventProcessList(dcEventProcess);
}
return dcEvents;
}
//时间比对
public static String getDatePoor(Date endDate, Date nowDate) {

2
zc-business/src/main/java/com/zc/business/service/impl/DcFacilityServiceImpl.java

@ -50,7 +50,7 @@ public class DcFacilityServiceImpl extends ServiceImpl<DcFacilityMapper, DcFacil
// 设备类型
if (Objects.nonNull(dcFacility.getFacilityType())) {
queryWrapper.like(DcFacility::getFacilityType, dcFacility.getFacilityType());
queryWrapper.eq(DcFacility::getFacilityType, dcFacility.getFacilityType());
}
// 名称

38
zc-business/src/main/resources/mapper/business/DcEventMapper.xml

@ -812,4 +812,42 @@
update dc_event set end_time = now(),event_state = '2'
where id = #{eventId}
</update>
<select id="dispatchRecordEventList" parameterType="DcEvent" resultMap="DcEventResult">
<include refid="selectDcEventVo"/>
<where>
<if test="deptId != null ">and dept_id = #{deptId}</if>
<if test="stakeMark != null and stakeMark != ''">and stake_mark BETWEEN #{stakeMark} and #{endStakeMark}
</if>
<if test="direction != null and direction != ''">and direction = #{direction}</if>
<if test="userId != null ">and user_id = #{userId}</if>
<if test="startTime != null ">and start_time BETWEEN #{startTime} and #{endTime}</if>
<if test="estimatedEndTime != null ">and estimated_end_time = #{estimatedEndTime}</if>
<if test="eventLevel != null ">and event_level = #{eventLevel}</if>
<if test="eventType != null ">and event_type = #{eventType}</if>
<if test="eventSubclass != null and eventSubclass != ''">and event_subclass = #{eventSubclass}</if>
<if test="eventCause != null and eventCause != ''">and event_cause = #{eventCause}</if>
<if test="description != null and description != ''">and description = #{description}</if>
<if test="eventState != null ">and event_state = #{eventState}</if>
<if test="eventSource != null ">and event_source = #{eventSource}</if>
<if test="eventNature != null ">and event_nature = #{eventNature}</if>
<if test="eventSourceTips != null and eventSourceTips != ''">and event_source_tips = #{eventSourceTips}
</if>
<if test="inTunnel != null ">and in_tunnel = #{inTunnel}</if>
<if test="isPerceived != null ">and is_perceived = #{isPerceived}</if>
</where>
<choose>
<when test="eventState == 0">
ORDER BY occurrence_time DESC
</when>
<when test="eventState == 1">
ORDER BY start_time DESC
</when>
<when test="eventState == 2">
ORDER BY end_time DESC
</when>
<otherwise>
ORDER BY create_time DESC
</otherwise>
</choose>
</select>
</mapper>

5
zc-business/src/main/resources/mapper/business/DcEventProcessMapper.xml

@ -150,4 +150,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where event_id = #{eventId} and process_type = '1' and process_id = #{processId} - 1
</select>
<select id="selectDcEventProcessByEventId" parameterType="string" resultMap="DcEventProcessResult">
<include refid="selectDcEventProcessVo"/>
where event_id = #{eventId}
</select>
</mapper>
Loading…
Cancel
Save