加字段,设备归属方id

This commit is contained in:
Guoqs
2025-12-04 15:32:41 +08:00
parent 235d938a6d
commit 3fc5a3273f
5 changed files with 35 additions and 9 deletions

View File

@@ -39,6 +39,11 @@ public class ThirdPartyStationRelation extends BaseEntity {
@Excel(name = "三方配置类型")
private String thirdPartyType;
/**
* 设备归属方id
*/
private String equipmentOwnerId;
/**
* 启动方式1-我方启动)
*/

View File

@@ -113,5 +113,10 @@ public interface ThirdPartyStationRelationService {
*/
List<StationInfoVO> selectStationList(String thirdPlatformType);
/**
* 根据站点id查询该站点对接了哪些第三方平台
* @param stationId
* @return
*/
List<ThirdPartyStationRelationVO> getRelationInfoListV2(String stationId);
}

View File

@@ -10,22 +10,45 @@ import lombok.Data;
*/
@Data
public class ThirdPartyStationRelationVO {
/**
* 站点id
*/
private String stationId;
/**
* 第三方平台类型
*/
private String thirdPartyType;
/**
* 第三方平台名称
*/
private String thirdPartyName;
/**
* 设备所属商户id
*/
private String equipmentOwnerId;
/**
* 启动模式
*/
private String startMode;
/**
* url地址
*/
private String urlAddress;
/**
* 密钥信息
*/
private String operatorId;
private String operatorSecret;
private String signSecret;
private String dataSecret;
private String dataSecretIv;
/**
* 对方平台密钥信息
*/