|
@@ -323,4 +323,48 @@ post体:
|
|
|
}
|
|
|
],
|
|
|
"resultMsg": ""
|
|
|
- }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+# 推荐数据平台资产或设备
|
|
|
+ http://<host>:<port>/venders-dp/recommend?projectId=Pj110108****&secret=***
|
|
|
+
|
|
|
+post体:
|
|
|
+
|
|
|
+ {
|
|
|
+ "limit":{ // 可选
|
|
|
+ "skip":300, // 跳过多少数据
|
|
|
+ "count":50 // 查询跳过300条数据之后的50条 (按照关联性相似度排名)
|
|
|
+ },
|
|
|
+ "criteria":{
|
|
|
+ "venderType":"supplier|insurer|maintainer", // 必填, 当前推荐的厂商类型
|
|
|
+ "venderName":"***", // 必填, 当前推荐的厂商的名称
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+返回:
|
|
|
+
|
|
|
+ {
|
|
|
+ "result": "success",
|
|
|
+ "content":[
|
|
|
+ {
|
|
|
+ "id":"****", //资产或设备id
|
|
|
+ "infos":{
|
|
|
+ "EquipLocalName":"", // 本地名称
|
|
|
+ "EquipLocalId":"", // 本地编码
|
|
|
+ "Brand":"", // 品牌
|
|
|
+ "Product":"", // 标牌名
|
|
|
+ "Specification":"", // 型号
|
|
|
+ "MaintainDeadline":"", // 合同截止日期
|
|
|
+ "MaintainPeriod":100 // 保养周期
|
|
|
+ }
|
|
|
+ },........
|
|
|
+ ],
|
|
|
+ "resultMsg": ""
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|