|
|
@ -21,6 +21,7 @@ import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
@ -129,9 +130,10 @@ public class EventreportPingyinServiceImpl extends BaseServiceImpl<EventreportPi |
|
|
|
} |
|
|
|
entity.setCompleteLevel(item.getCompleteLevel()); |
|
|
|
entity.setCompleteTime(item.getCompleteTime()); |
|
|
|
entity.setLng(null == item.getLng() ? null : item.getLng()); |
|
|
|
entity.setLat(null == item.getLat() ? null : item.getLat()); |
|
|
|
entity.setLng(item.getLng()); |
|
|
|
entity.setLat(item.getLat()); |
|
|
|
entity.setIsDel("N"); |
|
|
|
entity.setUpdateTime(new Date()); |
|
|
|
|
|
|
|
//业务不包含 一级分类里 如果是03 矛盾纠纷 则涉及人数写2(目前业务不支持 所以应产品需求 填2)
|
|
|
|
if ("03".equals(item.getParentEventCategory())) { |
|
|
|