1)由平台提供,开发者可查询柜门定价的信息
2)URL地址:https://public.zjuhe.cn/api/to_price_query
3)请求参数
变量名  | 必填  | 类型  | 说明  | 
encoding  | 是  | String(16)  | 专属编码(例:zng1458789541258),双方交互专属编码  | 
APPID  | 是  | String(20)  | 公众号ID(例:wx158fs586sad658s),微信公众号专属标识  | 
merchant  | 是  | String(128)  | 商户名称(例:智聚合)  | 
goods_id  | 是  | int(10)  | 柜子类型ID(例:40006)  | 
4)举例如下:
$date=[
'encoding' =>'zng1458789541258',
'APPID' =>'wx158fs586sad658s',
'merchant'=>'智聚合',
'goods_id'=>'40006'
];
$result = get_http_content('https://public.zjuhe.cn/api/to_price_query', 'POST',$date);
5、返回结果
{"code":200,"msg":"查询成功","data":{}}