万邦阿里巴巴中国站获取1688app上原数据 API 返回值说明

item_get_app-获取1688app上原数据 [查看演示] API测试工具 注册开通

1688.item_get_app(Ver:1.0.0-1.0)

  • 1688.item_get_app-1.0.0-1.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/1688/item_get_app

    名称 类型 必须 描述
    keyString调用key(必须以GET方式拼接在URL中)
    secretString调用密钥
    api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
    cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
    result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
    langString[cn,en,ru]翻译语言,默认cn简体中文
    versionStringAPI版本
    请求参数

    请求参数:num_iid=533816674053

    参数说明:num_iid:1688商品ID

    响应参数

    Version: Date:

    名称 类型 必须 示例值 描述
    item
    item[] 0 获取1688跨境商品原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
    curl_setopt($curl, CURLOPT_FAILONERROR, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HEADER, true);
    curl_setopt($curl, CURLOPT_ENCODING, "gzip");
    var_dump(curl_exec($curl));
    ?>
    <?php
    //定义缓存目录和引入文件
    define("DIR_RUNTIME","runtime/");
    define("DIR_ERROR","runtime/");
    define("SECACHE_SIZE","0");
    //SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
    include ("ObApiClient.php");
    
    $obapi = new otao\ObApiClient();
    $obapi->api_url = "http://api-gw.onebound.cn/";
    $obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
    $obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
    $obapi->api_key = "<您自己的apiKey>";
    $obapi->api_secret = "<您自己的apiSecret>";
    $obapi->api_version ="";
    $obapi->secache_path ="runtime/";
    $obapi->secache_time ="86400";
    $obapi->cache = true;
    
    $api_data = $obapi->exec(
                    array(
    	                "api_type" =>"1688",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '533816674053',
    )
                    )
                );
     var_dump($api_data);
    ?>
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.net.URL;
    import java.nio.charset.Charset;
    import org.json.JSONException;
    import org.json.JSONObject;
    import java.io.PrintWriter;
    import java.net.URLConnection;
    
    public class Example {
    	private static String readAll(Reader rd) throws IOException {
    		StringBuilder sb = new StringBuilder();
    		int cp;
    		while ((cp = rd.read()) != -1) {
    			sb.append((char) cp);
    		}
    		return  sb.toString();
    	}
    	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		conn.setDoOutput(true);
    		conn.setDoInput(true);
    		PrintWriter out = new PrintWriter(conn.getOutputStream());
    		out.print(body);
    		out.flush();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
    		URL realUrl = new URL(url);
    		URLConnection conn = realUrl.openConnection();
    		InputStream instream = conn.getInputStream();
    		try {
    			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
    			String jsonText = readAll(rd);
    			JSONObject json = new JSONObject(jsonText);
    			return json;
    		} finally {
    			instream.close();
    		}
    	}
    	public static void main(String[] args) throws IOException, JSONException {
    		// 请求示例 url 默认请求参数已经URL编码处理
    		String url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    		JSONObject json = getRequestFromUrl(url);
    		System.out.println(json.toString());
    	}
    
    }
    //using System.Net.Security;
    //using System.Security.Cryptography.X509Certificates;
    private const String method = "GET";
    static void Main(string[] args)
    {
    	String bodys = "";
    	// 请求示例 url 默认请求参数已经做URL编码
    	String url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    	HttpWebRequest httpRequest = null;
    	HttpWebResponse httpResponse = null; 
    	if (url.Contains("https://"))
    	{
    		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
    		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
    	}
    	else
    	{
    		httpRequest = (HttpWebRequest)WebRequest.Create(url);
    	}
    	httpRequest.Method = method;
    	if (0 < bodys.Length)
    	{
    		byte[] data = Encoding.UTF8.GetBytes(bodys);
    		using (Stream stream = httpRequest.GetRequestStream())
    		{
    		stream.Write(data, 0, data.Length);
    		}
    	}
    	try
    	{
    		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    	}
    	catch (WebException ex)
    	{
    		httpResponse = (HttpWebResponse)ex.Response;
    	}
    	Console.WriteLine(httpResponse.StatusCode);
    	Console.WriteLine(httpResponse.Method);
    	Console.WriteLine(httpResponse.Headers);
    	Stream st = httpResponse.GetResponseStream();
    	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
    	Console.WriteLine(reader.ReadToEnd());
    	Console.WriteLine("\n");
    }
    public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
    {
    	return true;
    }
    # coding:utf-8
    """
    Compatible for python2.x and python3.x
    requirement: pip install requests
    """
    from __future__ import print_function
    import requests
    # 请求示例 url 默认请求参数已经做URL编码
    url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"
    headers = {
        "Accept-Encoding": "gzip",
        "Connection": "close"
    }
    if __name__ == "__main__":
        r = requests.get(url, headers=headers)
        json_obj = r.json()
        print(json_obj)
    url := fmt.Sprintf("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053", params)
    req, err := http.NewRequest("GET", url, nil)
    if err != nil {
        panic(err)
    }
    req.Header.Set("Authorization", apiKey)
    
    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()
    
    body, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        panic(err)
    }
    
    fmt.Println(string(body))
    
    fetch('https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"533816674053"})// request parameters here
    })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error(error));
    
    <script src="js/obapi.js"></script>
    <script type="text/javascript">
    obAPI.config({
        debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
        api_url: "https://api-gw.onebound.cn", // 
        api_key: "<您自己的apiKey>", // 必填,
        api_secret: "<您自己的apiSecret>", //
        lang: "cn", // 
        timestamp: "", // 必填,生成签名的时间戳
        nonceStr: "", // 必填,生成签名的随机串
        signature: "",// 必填,签名
        jsApiList: [] // 必填,需要使用的JS接口列表
    });
    </script>
    <div id="api_data_box"></div>
    <script type="text/javascript">
    obAPI.exec(
         {
         "api_type":"1688",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"533816674053"}//num_iid=533816674053,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
    http = Net::HTTP.new(url.host, url.port)
    http.use_ssl = true
    request = Net::HTTP::Get.new(url)
    response = http.request(request)
    puts response.read_body 
    
    import Foundation
     
    let url = URL(string: "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")!
    let task = URLSession.shared.dataTask(with: url) { data, response, error in
        guard let data = data else {
            print("Error: No data was returned")
            return
        }
         
        if let data = String(data: data, encoding: .utf8) {
            print(data)
        }
    }
    task.resume()
    
    NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053"];
    
    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];
    
    [request setHTTPMethod:@"GET"];
    NSError *error;
    NSURLResponse *response;
    
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    
    NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"%@",result);
    
    #include<stdio.h>
    #include <stdlib.h>
    #include<string.h>
    #include<curl/curl.h>
    
    int main(){
      CURL *curl;  
      CURLcode res;   
      struct curl_slist *headers=NULL; 
    
      char url[] = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
      curl_global_init(CURL_GLOBAL_ALL); 
      curl = curl_easy_init(); 
    
      if(curl) {
        curl_easy_setopt(curl, CURLOPT_URL,url);
        headers = curl_slist_append(headers, "Content-Type: application/json"); 
    
        curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
        res = curl_easy_perform(curl);
    
        if(res != CURLE_OK){
          printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
        }
        curl_easy_cleanup(curl);          
      }
      curl_global_cleanup();
      return 0;
    }
    
    #include<iostream>
    #include<string>
    #include<curl/curl.h>
    
    using namespace std;
    
    static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
    {
        std::size_t realSize = size *nmemb;
        auto *realPtr = reinterpret_cast<char *>(ptr);
    
        for (std::size_t i=0;i<realSize;++i) {
            *(stream) += *(realPtr + i);
        }
    
        return realSize;
    }
    
    int main(){
    
         CURL *curl;
         CURLcode result;
         string readBuffer;
         curl = curl_easy_init();
    
         if(curl) {
    
             curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053");
             curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
             curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
             curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
    
             result = curl_easy_perform(curl);
    
             if(result == CURLE_OK) {
                 cout<<readBuffer<<endl;
             }else{
                 cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
             }
    
             curl_easy_cleanup(curl);
         }
         return 0;
    }
    
    const https = require("https");
    
    https.get("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053", (resp) => {
      let data = "";
    
      resp.on("data", (chunk) => {
        data += chunk;
      });
    
      resp.on("end", () => {
        console.log(data);
      });
    }).on("error", (err) => {
      console.log("Error: " + err.message);
    });
    
    import java.net.HttpURLConnection
    import java.net.URL
    
    fun main() {
        val url = URL("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
        val con = url.openConnection() as HttpURLConnection
        con.requestMethod = "GET"
    
        val responseCode = con.responseCode
        if (responseCode == HttpURLConnection.HTTP_OK) { // success
            val inputLine = con.inputStream.bufferedReader().use { it.readText() }
            println(inputLine)
        } else {
            println("GET request failed")
        }
    }
    
    use std::io::{self, Read};
    use reqwest;
    
    fn main() -> io::Result<()> {
    
        let mut resp = reqwest::get("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053")
    content(r)
    url = "https://api-gw.onebound.cn/1688/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=533816674053";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item": {
            "result": {
                "success": true,
                "code": "200",
                "result": {
                    "offerId": 629764222287,
                    "categoryId": 124158006,
                    "subject": "跨境新品批发高帮系带劳保鞋防砸防刺穿透气安全鞋工地轻便工作鞋",
                    "subjectTrans": "Cross-border new products wholesale high-top lace-up labor protection shoes anti-smashing anti-puncture breathable safety shoes construction site lightweight work shoes",
                    "description": "<div id=\"offer-template-0\"></div><p><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01ERxFcp1sM0dhrUALw_!!2206529635751-0-cib.jpg\" width=\"790\"/></p>\r\n<p><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01ErfcvX1sM0fGiTpLY_!!2206529635751-0-cib.jpg?__r__=1698109519781\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN012kya961sM0fB58pi2_!!2206529635751-0-cib.jpg?__r__=1698109519782\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN012elHQS1sM0h5buybE_!!2206529635751-0-cib.jpg?__r__=1705628390197\" alt=\"c7e63cc023afc82a7437805666937c\"/><br class=\"img-brk\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01im4LjX1sM0fB59R4b_!!2206529635751-0-cib.jpg?__r__=1698109519782\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01aYi6LW1sM0f9vULIL_!!2206529635751-0-cib.jpg?__r__=1698109519782\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01FdeYYl1sM0fFnXME3_!!2206529635751-0-cib.jpg?__r__=1698109519782\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01Z0BLP21sM0fEgs9sT_!!2206529635751-0-cib.jpg?__r__=1698109519782\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01dZnHeZ1sM0fEetu3x_!!2206529635751-0-cib.jpg?__r__=1698109519782\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01XEHJES1sM0fDcZVUL_!!2206529635751-0-cib.jpg?__r__=1698109519782\" width=\"790\"/><img src=\"https://cbu01.alicdn.com/img/ibank/O1CN01dCVcKQ1sM0fDc6yYz_!!2206529635751-0-cib.jpg?__r__=1698109519783\" width=\"790\"/></p>",
                    "mainVideo": "https://cloud.video.taobao.com/play/u/2206529635751/p/1/e/6/t/1/283156103093.mp4",
                    "productImage": {
                        "images": [
                            "https://cbu01.alicdn.com/img/ibank/21825873208_1656824494.jpg",
                            "https://cbu01.alicdn.com/img/ibank/21904273804_1656824494.jpg",
                            "https://cbu01.alicdn.com/img/ibank/21904303419_1656824494.jpg",
                            "https://cbu01.alicdn.com/img/ibank/21904282602_1656824494.jpg",
                            "https://cbu01.alicdn.com/img/ibank/21904321017_1656824494.jpg"
                        ]
                    },
                    "productAttribute": [
                        {
                            "attributeId": "346",
                            "attributeName": "产地",
                            "value": "高密",
                            "attributeNameTrans": "Origin",
                            "valueTrans": "High density"
                        },
                        {
                            "attributeId": "2176",
                            "attributeName": "品牌",
                            "value": "航固",
                            "attributeNameTrans": "Brand",
                            "valueTrans": "Airborne"
                        },
                        {
                            "attributeId": "1141",
                            "attributeName": "功能",
                            "value": "刺穿伤害",
                            "attributeNameTrans": "Function",
                            "valueTrans": "Puncture injury"
                        },
                        {
                            "attributeId": "287",
                            "attributeName": "材质",
                            "value": "牛皮",
                            "attributeNameTrans": "Material",
                            "valueTrans": "Cowhide"
                        },
                        {
                            "attributeId": "33506",
                            "attributeName": "鞋帮款式",
                            "value": "高筒",
                            "attributeNameTrans": "Upper style",
                            "valueTrans": "High cylinder"
                        },
                        {
                            "attributeId": "1398",
                            "attributeName": "货号",
                            "value": "813A/zs015/ZS018",
                            "attributeNameTrans": "Item No.",
                            "valueTrans": "813A/zs015/ZS018"
                        },
                        {
                            "attributeId": "192382239",
                            "attributeName": "包头材质",
                            "value": "钢包头",
                            "attributeNameTrans": "Baotou material",
                            "valueTrans": "Steel Baotou"
                        },
                        {
                            "attributeId": "2832",
                            "attributeName": "特性",
                            "value": "舒适透气",
                            "attributeNameTrans": "Characteristics",
                            "valueTrans": "Comfortable and breathable"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:36",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 36"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:37",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 37"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:38",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 38"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:39",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 39"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:40",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 40"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:41",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 41"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:42",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 42"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:43",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 43"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:44",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 44"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:45",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 45"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:46",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 46"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:47",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 47"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A黑色;尺码:48",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Black; Size: 48"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:36",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 36"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:37",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Khaka; Size: 37"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:38",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Khaka; Size: 38"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:39",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 39"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:40",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Khaka; Size: 40"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:41",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 41"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:42",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 42"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:43",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 43"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:44",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Khaka; Size: 44"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:45",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 45"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:46",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 46"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:47",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 47"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:48",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Khaka; Size: 48"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A卡其;尺码:35",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A khaki; Size: 35"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:36",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 36"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:37",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 37"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:38",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 38"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:39",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 39"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:40",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 40"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:41",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 41"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:42",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 42"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:43",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 43"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:44",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 44"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:45",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 45"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:46",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 46"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:47",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 47"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:48",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 48"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:813A棕色;尺码:35",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: 813A Brown; Size: 35"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:36",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 36"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:37",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 37"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:38",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 38"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:39",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 39"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:40",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 40"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:41",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 41"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:42",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 42"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:43",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 43"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:44",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 44"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:45",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 45"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:46",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 46"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:zs015卡其色;尺码:35",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: zs015 khaki; Size: 35"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:36",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 36"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:37",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 37"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:38",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 38"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:39",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 39"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:40",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 40"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:41",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 41"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:42",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 42"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:43",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 43"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:44",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 44"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:45",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 45"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:46",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 46"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS017卡其色;尺码:35",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS017 khaki; Size: 35"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:36",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 36"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:37",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 37"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:38",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 38"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:39",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 39"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:40",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 40"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:41",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 41"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:42",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 42"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:43",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 43"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:44",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 44"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:45",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 45"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:46",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 46"
                        },
                        {
                            "attributeId": "1236",
                            "attributeName": "规格型号",
                            "value": "颜色:ZS018蓝色;尺码:35",
                            "attributeNameTrans": "Specifications and models",
                            "valueTrans": "Color: ZS018 blue; Size: 35"
                        },
                        {
                            "attributeId": "1836",
                            "attributeName": "类型",
                            "value": "防砸防刺穿",
                            "attributeNameTrans": "Type",
                            "valueTrans": "Anti-smashing and anti-piercing"
                        }
                    ],
                    "productSkuInfos": [
                        {
                            "amountOnSale": 553,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443835,
                            "specId": "0340f376358baf526200fed216d9b47e",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:36",
                                    "valueTrans": "Color: 813A Black; Size: 36",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色36"
                        },
                        {
                            "amountOnSale": 550,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443836,
                            "specId": "dde34b187892e32d69c8f37c53939fcb",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:37",
                                    "valueTrans": "Color: 813A Black; Size: 37",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色37"
                        },
                        {
                            "amountOnSale": 533,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443837,
                            "specId": "86727c6ede04506f77f281fbd4aecb22",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:38",
                                    "valueTrans": "Color: 813A Black; Size: 38",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色38"
                        },
                        {
                            "amountOnSale": 477,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443838,
                            "specId": "10f44a90668cec0ad5685b9fde04deae",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:39",
                                    "valueTrans": "Color: 813A Black; Size: 39",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色39"
                        },
                        {
                            "amountOnSale": 435,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443839,
                            "specId": "9d0bdb1c3e52fc1e404429875280ec1b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:40",
                                    "valueTrans": "Color: 813A Black; Size: 40",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色40"
                        },
                        {
                            "amountOnSale": 378,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443840,
                            "specId": "9ebbff9870dee710b1963d9b7a32536a",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:41",
                                    "valueTrans": "Color: 813A Black; Size: 41",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色41"
                        },
                        {
                            "amountOnSale": 324,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443841,
                            "specId": "fd2b74395a5e03d8addcdf1e9c8f974c",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:42",
                                    "valueTrans": "Color: 813A Black; Size: 42",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色42"
                        },
                        {
                            "amountOnSale": 392,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443842,
                            "specId": "f3dc7b0c352f8a4eb428ed16ccc9c4f4",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:43",
                                    "valueTrans": "Color: 813A Black; Size: 43",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色43"
                        },
                        {
                            "amountOnSale": 463,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443843,
                            "specId": "f98bce33662807379d89fa8a157d9810",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:44",
                                    "valueTrans": "Color: 813A Black; Size: 44",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色44"
                        },
                        {
                            "amountOnSale": 506,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443844,
                            "specId": "e68d73f56fb1a4b4cb23c069385b4d93",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:45",
                                    "valueTrans": "Color: 813A Black; Size: 45",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色45"
                        },
                        {
                            "amountOnSale": 507,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443845,
                            "specId": "1f185c3545d4207c56a6a407e6cae429",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:46",
                                    "valueTrans": "Color: 813A Black; Size: 46",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色46"
                        },
                        {
                            "amountOnSale": 537,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443846,
                            "specId": "e44231b3a68e56ddc93e8c2976679d89",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:47",
                                    "valueTrans": "Color: 813A Black; Size: 47",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色47"
                        },
                        {
                            "amountOnSale": 501,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443847,
                            "specId": "549d856bf1d6d7829689a44252c90af6",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A黑色;尺码:48",
                                    "valueTrans": "Color: 813A Black; Size: 48",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/710/123/21904321017_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A黑色48"
                        },
                        {
                            "amountOnSale": 552,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443897,
                            "specId": "9e92bf9ff54aa957cd43fe57fc8b19fd",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:36",
                                    "valueTrans": "Color: 813A khaki; Size: 36",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其36"
                        },
                        {
                            "amountOnSale": 553,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443898,
                            "specId": "2fa56523786b2fe45ec56bd64fdd1d57",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:37",
                                    "valueTrans": "Color: 813A Khaka; Size: 37",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其37"
                        },
                        {
                            "amountOnSale": 552,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443899,
                            "specId": "2499d4e559600ba7e4758ae330af2cc5",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:38",
                                    "valueTrans": "Color: 813A Khaka; Size: 38",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其38"
                        },
                        {
                            "amountOnSale": 535,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443900,
                            "specId": "292b8bc0211849cd5abafd67c8f1a739",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:39",
                                    "valueTrans": "Color: 813A khaki; Size: 39",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其39"
                        },
                        {
                            "amountOnSale": 479,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443901,
                            "specId": "ccb2aa02c2afd194bf3668d38a5511ab",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:40",
                                    "valueTrans": "Color: 813A Khaka; Size: 40",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其40"
                        },
                        {
                            "amountOnSale": 459,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443902,
                            "specId": "9446ce2d68d0a86327c1a2c368908e3b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:41",
                                    "valueTrans": "Color: 813A khaki; Size: 41",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其41"
                        },
                        {
                            "amountOnSale": 448,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443903,
                            "specId": "b95d3710a0dfa6560d59126b35891190",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:42",
                                    "valueTrans": "Color: 813A khaki; Size: 42",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其42"
                        },
                        {
                            "amountOnSale": 467,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443904,
                            "specId": "252950c444c4535fb4b350a0aed8d1ab",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:43",
                                    "valueTrans": "Color: 813A khaki; Size: 43",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其43"
                        },
                        {
                            "amountOnSale": 501,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443905,
                            "specId": "5cdb4743fee4f5ec086cb1547b1d575e",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:44",
                                    "valueTrans": "Color: 813A Khaka; Size: 44",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其44"
                        },
                        {
                            "amountOnSale": 525,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443906,
                            "specId": "fa02b7370da02c7c936ce075c6459487",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:45",
                                    "valueTrans": "Color: 813A khaki; Size: 45",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其45"
                        },
                        {
                            "amountOnSale": 538,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443907,
                            "specId": "85033cfc379ebe575104375ae13f1ae5",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:46",
                                    "valueTrans": "Color: 813A khaki; Size: 46",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其46"
                        },
                        {
                            "amountOnSale": 539,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 4935742865443,
                            "specId": "4ebe9abd19215c722f25609ba52a13b8",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:47",
                                    "valueTrans": "Color: 813A khaki; Size: 47",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其47"
                        },
                        {
                            "amountOnSale": 529,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 4935742865444,
                            "specId": "76a9d250ee3581e90c9d442c652b062f",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:48",
                                    "valueTrans": "Color: 813A Khaka; Size: 48",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其48"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443908,
                            "specId": "c8a75f907a1109598c12c8c5df019e9f",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A卡其;尺码:35",
                                    "valueTrans": "Color: 813A khaki; Size: 35",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/157/008/21993800751_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A卡其35"
                        },
                        {
                            "amountOnSale": 549,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443852,
                            "specId": "f05051af8f40f54e916384a678cde542",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:36",
                                    "valueTrans": "Color: 813A Brown; Size: 36",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色36"
                        },
                        {
                            "amountOnSale": 546,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443853,
                            "specId": "fd4f114313317d234a2436c2baa392f3",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:37",
                                    "valueTrans": "Color: 813A Brown; Size: 37",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色37"
                        },
                        {
                            "amountOnSale": 514,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443854,
                            "specId": "f648aacd1c4a41c7603856794e03eded",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:38",
                                    "valueTrans": "Color: 813A Brown; Size: 38",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色38"
                        },
                        {
                            "amountOnSale": 410,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443855,
                            "specId": "eca2f6ed3b092bbeffa670fb6e06d1e8",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:39",
                                    "valueTrans": "Color: 813A Brown; Size: 39",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色39"
                        },
                        {
                            "amountOnSale": 318,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443856,
                            "specId": "df713f4e6ddd88db71ca95c7e91e7fed",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:40",
                                    "valueTrans": "Color: 813A Brown; Size: 40",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色40"
                        },
                        {
                            "amountOnSale": 261,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443857,
                            "specId": "92d66a19419760820f492a2dafecd56b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:41",
                                    "valueTrans": "Color: 813A Brown; Size: 41",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色41"
                        },
                        {
                            "amountOnSale": 177,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443858,
                            "specId": "9d02d49619f677185d3341c752030633",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:42",
                                    "valueTrans": "Color: 813A Brown; Size: 42",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色42"
                        },
                        {
                            "amountOnSale": 299,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443859,
                            "specId": "d7e04d4d6c02eaaf0bec211d17e86eaf",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:43",
                                    "valueTrans": "Color: 813A Brown; Size: 43",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色43"
                        },
                        {
                            "amountOnSale": 401,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443860,
                            "specId": "a0e17b20e52ceb2813c4dbd79d68182a",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:44",
                                    "valueTrans": "Color: 813A Brown; Size: 44",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色44"
                        },
                        {
                            "amountOnSale": 475,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443861,
                            "specId": "ef81747ad44b1803fca5fe71172e93c2",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:45",
                                    "valueTrans": "Color: 813A Brown; Size: 45",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色45"
                        },
                        {
                            "amountOnSale": 502,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443862,
                            "specId": "e5d1fb12070a34c1fce70850076e6e16",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:46",
                                    "valueTrans": "Color: 813A Brown; Size: 46",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色46"
                        },
                        {
                            "amountOnSale": 503,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5107945655094,
                            "specId": "cf173c288fe737ae1ac704534748e825",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:47",
                                    "valueTrans": "Color: 813A Brown; Size: 47",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色47"
                        },
                        {
                            "amountOnSale": 496,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5107945655095,
                            "specId": "a91a3158fb055a33e04a918a9cadd095",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:48",
                                    "valueTrans": "Color: 813A Brown; Size: 48",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色48"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "78.0",
                            "jxhyPrice": "84",
                            "skuId": 5106961443863,
                            "specId": "fb6e7800be9526c986dc97f2f6bda205",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:813A棕色;尺码:35",
                                    "valueTrans": "Color: 813A Brown; Size: 35",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/2020/450/678/21825876054_1656824494.jpg"
                                }
                            ],
                            "consignPrice": "84.0",
                            "cargoNumber": "813A棕色35"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443864,
                            "specId": "f0f82e5be276f4fb795020345d54fd92",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:36",
                                    "valueTrans": "Color: zs015 khaki; Size: 36",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色36"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443865,
                            "specId": "4bf4ffcaa6c9787e4a7222e6807c2705",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:37",
                                    "valueTrans": "Color: zs015 khaki; Size: 37",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色37"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443866,
                            "specId": "cc153dd4a6bfb6a0fe132c161adcc2a3",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:38",
                                    "valueTrans": "Color: zs015 khaki; Size: 38",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色38"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443867,
                            "specId": "10593e83dd9a84f55127863ff18cdf5c",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:39",
                                    "valueTrans": "Color: zs015 khaki; Size: 39",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色39"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443868,
                            "specId": "bcf6b66da6f787941feb7e7c4c414bb8",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:40",
                                    "valueTrans": "Color: zs015 khaki; Size: 40",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色40"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443869,
                            "specId": "8465d95110419103bb60677a6210dd8c",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:41",
                                    "valueTrans": "Color: zs015 khaki; Size: 41",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色41"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443870,
                            "specId": "cd03446fce08927b9ea2668dab0a7bd9",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:42",
                                    "valueTrans": "Color: zs015 khaki; Size: 42",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色42"
                        },
                        {
                            "amountOnSale": 563,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443871,
                            "specId": "392a258ab4e34dd8df37c75f59e0f9c7",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:43",
                                    "valueTrans": "Color: zs015 khaki; Size: 43",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色43"
                        },
                        {
                            "amountOnSale": 563,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443872,
                            "specId": "27e90183b04a2da5dc9be7b49ff43a1d",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:44",
                                    "valueTrans": "Color: zs015 khaki; Size: 44",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色44"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443873,
                            "specId": "cb3a3462811c2a65ae50c52236d012a6",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:45",
                                    "valueTrans": "Color: zs015 khaki; Size: 45",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色45"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443874,
                            "specId": "e3e15b0a15851bdf39656baa2417901b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:46",
                                    "valueTrans": "Color: zs015 khaki; Size: 46",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色46"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443875,
                            "specId": "21aac6ef8527d7357f7c20c7f66db6c2",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:zs015卡其色;尺码:35",
                                    "valueTrans": "Color: zs015 khaki; Size: 35",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0169FB351sM0VqXkBkk_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "zs015黄色35"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443848,
                            "specId": "ecaaa7d86cc97c9128653803ca241258",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:36",
                                    "valueTrans": "Color: ZS017 khaki; Size: 36",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色36"
                        },
                        {
                            "amountOnSale": 562,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443849,
                            "specId": "bd848cc0bed33194491c7d7b18dc3005",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:37",
                                    "valueTrans": "Color: ZS017 khaki; Size: 37",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色37"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443850,
                            "specId": "8a8d1e2420ef6abdeb99132d5c3e601b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:38",
                                    "valueTrans": "Color: ZS017 khaki; Size: 38",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色38"
                        },
                        {
                            "amountOnSale": 547,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443851,
                            "specId": "831e813c1a0c5e436e1f3bbbf3889ee5",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:39",
                                    "valueTrans": "Color: ZS017 khaki; Size: 39",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色39"
                        },
                        {
                            "amountOnSale": 552,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443909,
                            "specId": "815a412e4555dfbb04dfd3e04d62ab60",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:40",
                                    "valueTrans": "Color: ZS017 khaki; Size: 40",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色40"
                        },
                        {
                            "amountOnSale": 550,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443910,
                            "specId": "735d1fec0d29dfaee8230603d0324a67",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:41",
                                    "valueTrans": "Color: ZS017 khaki; Size: 41",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色41"
                        },
                        {
                            "amountOnSale": 550,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443911,
                            "specId": "31be2145f8dd3da4f76dd22a40fe7079",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:42",
                                    "valueTrans": "Color: ZS017 khaki; Size: 42",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色42"
                        },
                        {
                            "amountOnSale": 555,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443912,
                            "specId": "c40600cd99356d0f4e3857e0e6a053cd",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:43",
                                    "valueTrans": "Color: ZS017 khaki; Size: 43",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色43"
                        },
                        {
                            "amountOnSale": 560,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443913,
                            "specId": "2102bee77306e1636582c6dd922fe1d3",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:44",
                                    "valueTrans": "Color: ZS017 khaki; Size: 44",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色44"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443914,
                            "specId": "d640afdf972a80a355bc6fd1fc2f5028",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:45",
                                    "valueTrans": "Color: ZS017 khaki; Size: 45",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色45"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443915,
                            "specId": "2e7f46aa38a8c7fc5a487d8a7a342fa8",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:46",
                                    "valueTrans": "Color: ZS017 khaki; Size: 46",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色46"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443916,
                            "specId": "eff6fd424a1f70a4eb6e9605ec3b089b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS017卡其色;尺码:35",
                                    "valueTrans": "Color: ZS017 khaki; Size: 35",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01Vv9c0P1sM0VwgekEm_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS017黄色35"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849991,
                            "specId": "201f95aa3aec64a0e937287f64e8e450",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:36",
                                    "valueTrans": "Color: ZS018 yellow; Size: 36",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色36"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849992,
                            "specId": "c618be86a509864854c0fb9d8c7d2b7f",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:37",
                                    "valueTrans": "Color: ZS018 yellow; Size: 37",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色37"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849993,
                            "specId": "30ae0dfdf04c915a563618e079ce3314",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:38",
                                    "valueTrans": "Color: ZS018 yellow; Size: 38",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色38"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849994,
                            "specId": "e4ee07c5bb24f369d03e7c9f6918f248",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:39",
                                    "valueTrans": "Color: ZS018 yellow; Size: 39",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色39"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849995,
                            "specId": "0798cc08db289d599aadb429f2c273c0",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:40",
                                    "valueTrans": "Color: ZS018 yellow; Size: 40",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色40"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849996,
                            "specId": "dc64466a133b631406e3a8cfa22b180b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:41",
                                    "valueTrans": "Color: ZS018 yellow; Size: 41",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色41"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849997,
                            "specId": "54aeb02f75279071c7b0455b340a6e2f",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:42",
                                    "valueTrans": "Color: ZS018 yellow; Size: 42",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色42"
                        },
                        {
                            "amountOnSale": 563,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849998,
                            "specId": "0321030086b115f37b9b61550ebe925b",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:43",
                                    "valueTrans": "Color: ZS018 yellow; Size: 43",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色43"
                        },
                        {
                            "amountOnSale": 563,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849999,
                            "specId": "2bfc9a52385846ce68aff3c8eb90dedc",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:44",
                                    "valueTrans": "Color: ZS018 yellow; Size: 44",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色44"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758850000,
                            "specId": "f2196f26e33480f13618bcbf5f8c146c",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:45",
                                    "valueTrans": "Color: ZS018 yellow; Size: 45",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色45"
                        },
                        {
                            "amountOnSale": 564,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934760153001,
                            "specId": "1f7d3a08f076227da5c0d1c62b4c382e",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:46",
                                    "valueTrans": "Color: ZS018 yellow; Size: 46",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色46"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 4934758849990,
                            "specId": "4028ba12c4c6ee3bcbd596ca4d8ed4d7",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018黄色;尺码:35",
                                    "valueTrans": "Color: ZS018 yellow; Size: 35",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN01SkGHoh1sM0VrD7bHJ_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018黄色35"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443889,
                            "specId": "1b2cd11ae2cae9507ba8eeb90461da71",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:36",
                                    "valueTrans": "Color: ZS018 blue; Size: 36",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色36"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443890,
                            "specId": "5baadfc55e05dff233b0e78f3254d367",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:37",
                                    "valueTrans": "Color: ZS018 blue; Size: 37",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色37"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443891,
                            "specId": "14273283a747cb08507355a2cccb9ace",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:38",
                                    "valueTrans": "Color: ZS018 blue; Size: 38",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色38"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443892,
                            "specId": "f06484adff639aa6de057aba22e46546",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:39",
                                    "valueTrans": "Color: ZS018 blue; Size: 39",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色39"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443918,
                            "specId": "b02e72b9167015d71973ef98f6f919f7",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:40",
                                    "valueTrans": "Color: ZS018 blue; Size: 40",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色40"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443893,
                            "specId": "d444822b38572a0cab69454a2bdfc3ff",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:41",
                                    "valueTrans": "Color: ZS018 blue; Size: 41",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色41"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443894,
                            "specId": "df49a99c4ab96d4991dbd678bb7b5edb",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:42",
                                    "valueTrans": "Color: ZS018 blue; Size: 42",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色42"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443895,
                            "specId": "facb5d2e76122bd8f0a3ae95943b89d0",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:43",
                                    "valueTrans": "Color: ZS018 blue; Size: 43",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色43"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443896,
                            "specId": "920406b473260fbb2c782cdd352cdbdb",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:44",
                                    "valueTrans": "Color: ZS018 blue; Size: 44",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色44"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443919,
                            "specId": "faccef3be0bddb52f363fc3c07b17556",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:45",
                                    "valueTrans": "Color: ZS018 blue; Size: 45",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色45"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443917,
                            "specId": "1c2202784325f26568c676cc57849954",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:46",
                                    "valueTrans": "Color: ZS018 blue; Size: 46",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色46"
                        },
                        {
                            "amountOnSale": 565,
                            "price": "60.0",
                            "jxhyPrice": "66",
                            "skuId": 5106961443888,
                            "specId": "832a9ec0876e5ceec4ef91ec61af5743",
                            "skuAttributes": [
                                {
                                    "attributeId": 1236,
                                    "attributeName": "规格型号",
                                    "attributeNameTrans": "Specifications and models",
                                    "value": "颜色:ZS018蓝色;尺码:35",
                                    "valueTrans": "Color: ZS018 blue; Size: 35",
                                    "skuImageUrl": "https://cbu01.alicdn.com/img/ibank/O1CN0193R65H1sM0VzK6tOO_!!2206529635751-0-cib.jpg"
                                }
                            ],
                            "consignPrice": "66.0",
                            "cargoNumber": "ZS018蓝色35"
                        }
                    ],
                    "productSaleInfo": {
                        "amountOnSale": 46431,
                        "priceRangeList": [
                            {
                                "startQuantity": 1,
                                "price": "60.0"
                            }
                        ],
                        "quoteType": 1,
                        "jxhyPrice": "66"
                    },
                    "productShippingInfo": {
                        "sendGoodsAddressText": "山东省 潍坊市"
                    },
                    "isJxhy": false,
                    "sellerOpenId": "BBBSvyqimnYtLnmm90B_59dsg",
                    "minOrderQuantity": 1,
                    "status": "published",
                    "tagInfoList": [
                        {
                            "key": "isOnePsale",
                            "value": true
                        },
                        {
                            "key": "isSupportMix",
                            "value": true
                        },
                        {
                            "key": "noReason7DReturn",
                            "value": false
                        },
                        {
                            "key": "1688_yx",
                            "value": false
                        }
                    ],
                    "traceInfo": "object_id@629764222287^object_type@offer",
                    "sellerMixSetting": {
                        "generalHunpi": true,
                        "mixAmount": 100,
                        "mixNumber": 2
                    },
                    "productCargoNumber": "813A/zs015/ZS018",
                    "sellerDataInfo": {
                        "tradeMedalLevel": "5",
                        "compositeServiceScore": "4.5",
                        "logisticsExperienceScore": "3.0",
                        "disputeComplaintScore": "5.0",
                        "offerExperienceScore": "5.0",
                        "consultingExperienceScore": "4.5"
                    },
                    "soldOut": "1059"
                }
            }
        }
    }
    异常示例
    {
      "error": "item-not-found",
      "reason": "商品没找到",
      "error_code": "2000",
      "success": 0,
      "cache": 0,
      "api_info": "today:0 max:10000",
      "execution_time": 0.081,
      "server_time": "Beijing/2020-06-10 23:44:00",
      "call_args": [],
      "api_type": "taobao",
      "request_id": "12ee0ffc041242"}
    相关资料
    错误码解释
    状态代码(error_code) 状态信息 详细描述 是否收费
    0000success接口调用成功并返回相关数据
    2000Search success but no result接口访问成功,但是搜索没有结果
    4000Server internal error服务器内部错误
    4001Network error网络错误
    4002Target server error目标服务器错误
    4003Param error用户输入参数错误忽略
    4004Account not found用户帐号不存在忽略
    4005Invalid authentication credentials授权失败忽略
    4006API stopped您的当前API已停用忽略
    4007Account stopped您的账户已停用忽略
    4008API rate limit exceeded并发已达上限忽略
    4009API maintenanceAPI维护中忽略
    4010API not found with these valuesAPI不存在忽略
    4012Please add api first请先添加api忽略
    4013Number of calls exceeded调用次数超限忽略
    4014Missing url param参数缺失忽略
    4015Wrong pageToken参数pageToken有误忽略
    4016Insufficient balance余额不足忽略
    4017timeout error请求超时
    5000unknown error未知错误
    API 工具
    如何获得此API
    立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)