深圳平台新增 查询令牌、推送站点信息接口

This commit is contained in:
Lemon
2024-05-15 09:58:28 +08:00
parent b41121c259
commit fb8f69ab9e
8 changed files with 225 additions and 3 deletions

View File

@@ -196,6 +196,11 @@ public class CommonService {
insertInfo2DataBase(dto);
result = dto.getThirdPartyType() + "" + "OK";
}
if (StringUtils.equals(ThirdPlatformTypeEnum.DIAN_XING_PLATFORM.getTypeCode(), dto.getThirdPartyType())) {
// 宁波点行平台
insertInfo2DataBase(dto);
result = ThirdPlatformTypeEnum.DIAN_XING_PLATFORM.getTypeLabel() + "" + "OK";
}
finalResult.append(result).append("\n");
}
return finalResult.toString();