diff --git a/zc-business/src/main/java/com/zc/business/domain/DcEvent.java b/zc-business/src/main/java/com/zc/business/domain/DcEvent.java index d325dfb9..13361a65 100644 --- a/zc-business/src/main/java/com/zc/business/domain/DcEvent.java +++ b/zc-business/src/main/java/com/zc/business/domain/DcEvent.java @@ -235,7 +235,6 @@ public class DcEvent extends BaseEntity { * 2014/2/21新增 */ - /** * */ diff --git a/zc-business/src/main/java/com/zc/business/domain/DcEventTrafficCongestion.java b/zc-business/src/main/java/com/zc/business/domain/DcEventTrafficCongestion.java index 1157c9be..1be93178 100644 --- a/zc-business/src/main/java/com/zc/business/domain/DcEventTrafficCongestion.java +++ b/zc-business/src/main/java/com/zc/business/domain/DcEventTrafficCongestion.java @@ -82,6 +82,8 @@ public class DcEventTrafficCongestion extends BaseEntity private Integer locationType; @ApiModelProperty("地点描述") private String locationDescription; + @ApiModelProperty("终止桩号") + private String endStakeMark; @ApiModelProperty("事件信息实体") diff --git a/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml b/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml index 4214fe7f..f0a83fa1 100644 --- a/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml +++ b/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml @@ -15,6 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + @@ -26,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select location_type,location_description,detailed_reasons,id, congestion_mileage, congestion_cause, facility_id, ramp_id, location,max_congestion_mileage from dc_event_traffic_congestion + select end_stake_mark,location_type,location_description,detailed_reasons,id, congestion_mileage, congestion_cause, facility_id, ramp_id, location,max_congestion_mileage from dc_event_traffic_congestion @@ -41,6 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" dc_event_traffic_congestion.location_type as location_type, dc_event_traffic_congestion.location_description as location_description, dc_event_traffic_congestion.detailed_reasons as detailed_reasons, + dc_event_traffic_congestion.end_stake_mark as end_stake_mark, dc_facility.other_config as other_config, dc_facility.remark as remark, @@ -81,6 +83,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" location_description, location_type, detailed_reasons, + end_stake_mark, #{id}, @@ -93,6 +96,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{locationDescription}, #{locationType}, #{detailedReasons}, + #{end_stake_mark}, @@ -108,6 +112,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" location_description = #{locationDescription}, location_type = #{locationType}, detailed_reasons = #{detailedReasons}, + end_stake_mark = #{endStakeMark}, where id = #{id}