4005.获取某Epc分类的配件列表

简要描述: 请求URL: 请求案例: 请求方式: 参数:

参数名必选类型说明
epcstring该OE号所属epc,继承自接口4002中epc参数
actionstring动作命令,illustration某分解图下对应配件列表
cata_codestring接口4002返回的cata_code节点
userstring用户名
tokenstring密钥,算法案例:
MD5(concat(MD5(‘myusername’),MD5(‘mypassword’),’/toyota?action=illustration&cata_code=0901_090347-001’))

返回示例
{

"code": 1,

"msg": "success",

"data": {

"partlist": [{

"illustration_img_address": "090347.png",

"callout": "09150",

"cata_code": "0901_090347-001",

"partnumber_original": "091510H010",

"partnumber": "091510H010",

"name_en": "LLAVE DE TUBOS, BUJIAS",

"name_zh": "轮毂螺母扳手",

"std_name_en": null,

"std_name_zh": "",

"qty": "01",

"begin_date": "200502",

"end_date": "200812",

"replacement": null,

"remark_en": "",

"remark_zh": null,

"sort": null,

"is_fit_for_this_vin": 1

},

...

{

"illustration_img_address": "090347.png",

"callout": "09126",

"cata_code": "0901_090347-001",

"partnumber_original": "091260H011",

"partnumber": "091260H011",

"name_en": "CAJA, GATO",

"name_zh": "千斤顶盒",

"std_name_en": null,

"std_name_zh": "",

"qty": "01",

"begin_date": "201202",

"end_date": "999999",

"replacement": null,

"remark_en": "",

"remark_zh": null,

"sort": null,

"is_fit_for_this_vin": 1

}],

"imgaddress": "090347.png",

"all_img_hotspots": [{

"img_hotspots": {

"img_name": "090347.png",

"img_width": 760,

"img_height": 1112,

"img_format": "image/png",

"hotspots": [{

"callout": "09150",

"topleft_x": 189,

"topleft_y": 586

},

...

{

"callout": "09126",

"topleft_x": 541,

"topleft_y": 414

}]

}

}]

}

}

返回参数partlist配件列表节点说明

参数名类型说明
calloutstring图号
qtystring数量
replacementstring替换号
partnumberstring配件oe号码,去了特殊字符的
partnumber_originalstring配件oe号码,epc原始的
name_enstring配件epc英文名称
name_zhstring配件epc中文名称
std_name_enstring配件标准名称(英文),也就是市场标准化的名称
std_name_zhstring配件标准名称(中文),也就是市场标准化的名称
illustration_img_addressstring配件分解图 090347.png 请求案例:http://resource.17vin.com/img/{epc}/{illustration_img_address} 例如:http://resource.17vin.com/img/toyota/090347.png
begin_datestring开始日期
end_datestring结束日期
remark_enstring英文备注
remark_zhstring中文备注
is_fit_for_this_vinint是否适用当前vin号,1:适用,0 不适用
sortint排序号,用于排序,可以自由选择是否需要

返回参数all_img_hotspots节点说明

参数名类型说明
img_namestring配件分解图 090347.png 请求案例:http://resource.17vin.com/img/{epc}/{illustration_img_address} 例如:http://resource.17vin.com/img/toyota/090347.png
img_widthint图片宽度
img_heightstring图片高度
img_formatstring图片格式
hotspotsstring图片坐标节点
hotspots>calloutstring图号
hotspots>topleft_xstring图号在图片中左定点的X坐标位置
hotspots>topleft_ystring图号在图片中左定点的Y坐标位置

备注