no message

This commit is contained in:
2025-09-29 12:39:49 +08:00
parent 2e5fc4ea59
commit 1203fece41
3 changed files with 8 additions and 6 deletions

View File

@ -25,6 +25,7 @@ import java.util.Map;
@Slf4j @Slf4j
@Service @Service
@Component @Component
@RefreshScope
public class ReceiveServiceImpl implements ReceiveService { public class ReceiveServiceImpl implements ReceiveService {

View File

@ -49,11 +49,11 @@ public class SendDataServiceImpl implements SendDataService {
@Autowired @Autowired
private OrderBatteryInfoMapper orderBatteryInfoMapper; private OrderBatteryInfoMapper orderBatteryInfoMapper;
@Value("${third-party.api-url}") @Value("${third-party.platform.api-url}")
private String URL; private String URL;
@Value("${third-party.app-id}") @Value("${third-party.platform.app-id}")
private String appId; private String appId;
@Value("${third-party.access-token}") @Value("${third-party.platform.access-token}")
private String accessToken; private String accessToken;

View File

@ -27,13 +27,14 @@ import java.util.Map;
*/ */
@Slf4j @Slf4j
@Service @Service
@RefreshScope
public class ThirdPartyForwardServiceImpl implements ThirdPartyForwardService { public class ThirdPartyForwardServiceImpl implements ThirdPartyForwardService {
@Value("${third-party.app-id}") @Value("${third-party.platform.app-id}")
private String appId; private String appId;
@Value("${third-party.access-token}") @Value("${third-party.platform.access-token}")
private String accessToken; private String accessToken;
@Value("${third-party.timeout}") @Value("${third-party.platform.timeout}")
private int timeOut; private int timeOut;