From a2df2e39f5fa227c0aec4b3d462be07a8993cf49 Mon Sep 17 00:00:00 2001
From: Guoqs <123@jsowell.com>
Date: Mon, 8 Dec 2025 16:39:19 +0800
Subject: [PATCH] =?UTF-8?q?bugfix=20=E6=9B=B4=E6=96=B0=E7=AB=99=E7=82=B9?=
=?UTF-8?q?=E4=BA=92=E8=81=94=E4=BA=92=E9=80=9A=E9=85=8D=E7=BD=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pile/service/impl/ThirdPartyStationRelationServiceImpl.java | 2 +-
.../resources/mapper/pile/ThirdPartyStationRelationMapper.xml | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java
index ef2c4c26d..7e573ef37 100644
--- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java
+++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java
@@ -189,7 +189,7 @@ public class ThirdPartyStationRelationServiceImpl implements ThirdPartyStationRe
log.error("修改站点、第三方推送平台配置对应信息失败,站点、第三方推送平台配置对应不存在, id:{}", dto.getId());
return;
}
- thirdPartyStationRelation.setThirdPartyType(dto.getThirdPartyType());
+ thirdPartyStationRelation.setEquipmentOwnerId(dto.getEquipmentOwnerId());
thirdPartyStationRelation.setUpdateTime(DateUtils.getNowDate());
thirdPartyStationRelation.setUpdateBy(SecurityUtils.getUsername());
log.info("更新thirdPartyStationRelation:{}", thirdPartyStationRelation);
diff --git a/jsowell-pile/src/main/resources/mapper/pile/ThirdPartyStationRelationMapper.xml b/jsowell-pile/src/main/resources/mapper/pile/ThirdPartyStationRelationMapper.xml
index 318e7f5c7..c6994387c 100644
--- a/jsowell-pile/src/main/resources/mapper/pile/ThirdPartyStationRelationMapper.xml
+++ b/jsowell-pile/src/main/resources/mapper/pile/ThirdPartyStationRelationMapper.xml
@@ -7,6 +7,7 @@
+
@@ -19,6 +20,7 @@
id,
station_id,
third_party_type,
+ equipment_owner_id,
start_mode,
create_time,
create_by,