1.修复重新绑定医院客户导致的多条数据秘钥数据不同,旧数据失效问题

master
x_z 2 years ago
parent 89b12dd403
commit 18a2f002a7

@ -7,6 +7,8 @@ import com.glxp.udi.admin.res.info.PlatformLinkResponse;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper @Mapper
public interface UnitMaintainPlatformDao extends BaseMapper<UnitMaintainPlatform> { public interface UnitMaintainPlatformDao extends BaseMapper<UnitMaintainPlatform> {
@ -19,4 +21,12 @@ public interface UnitMaintainPlatformDao extends BaseMapper<UnitMaintainPlatform
* @return * @return
*/ */
IPage<PlatformLinkResponse> getLinkPlatformList(IPage<PlatformLinkResponse> page, @Param("customerId") String customerId, @Param("key") String key); IPage<PlatformLinkResponse> getLinkPlatformList(IPage<PlatformLinkResponse> page, @Param("customerId") String customerId, @Param("key") String key);
/**
* ID
*
* @param customerId
* @return
*/
List<UnitMaintainPlatform> selectByCustomerId(@Param("customerId") Long customerId);
} }

@ -238,6 +238,16 @@ public class PlatformService {
} else { } else {
unitMaintainPlatformDao.insert(unitMaintainPlatform); unitMaintainPlatformDao.insert(unitMaintainPlatform);
} }
//更新当前客户关联数据的所有key
List<UnitMaintainPlatform> list = unitMaintainPlatformDao.selectByCustomerId(unitMaintainPlatform.getCustomerId());
for (UnitMaintainPlatform maintainPlatform : list) {
maintainPlatform.setAppid(unitMaintainPlatform.getAppid());
maintainPlatform.setApiKey(unitMaintainPlatform.getApiKey());
maintainPlatform.setSecretKey(unitMaintainPlatform.getSecretKey());
unitMaintainPlatformDao.updateById(maintainPlatform);
}
} }
/** /**

@ -24,4 +24,8 @@
) )
</if> </if>
</select> </select>
<select id="selectByCustomerId" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainPlatform">
select * from io_unit_maintain_platform where customerId = #{customerId}
</select>
</mapper> </mapper>
Loading…
Cancel
Save