update 第三方平台推送方法 由通过站点id查询配置密钥改为通过对应第三方平台类型查询

This commit is contained in:
Lemon
2024-04-19 15:22:31 +08:00
parent 646e88b057
commit 000b824398
25 changed files with 171 additions and 106 deletions

View File

@@ -111,4 +111,6 @@ public class NROrderInfo {
*/
@JSONField(name = "MeterValueEnd")
private BigDecimal meterValueEnd;
private String thirdPartyType;
}

View File

@@ -0,0 +1,19 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* TODO
*
* @author Lemon
* @Date 2024/4/19 14:38:48
*/
@Data
public class PushRealTimeInfoDTO {
private String pileConnectorCode;
private String status;
private String thirdPartyType;
}