万邦淘宝/天猫获得淘宝app商品详情原数据 API 返回值说明

item_get_app-获得淘宝app商品详情原数据 [查看演示] API测试工具 注册开通

taobao.item_get_app(Ver:4.0.8-7.0)

  • taobao.item_get_app-1.0.0-6.0.html
  • taobao.item_get_app-1.0.0-7.0.html
  • taobao.item_get_app-2.0.0-1.0.html
  • taobao.item_get_app-2.0.0-2.0.html
  • taobao.item_get_app-2.0.0-3.0.html
  • taobao.item_get_app-2.0.0-7.0.html
  • taobao.item_get_app-3.0.0-7.0.html
  • taobao.item_get_app-4.0.0-7.0.html
  • taobao.item_get_app-4.0.1-7.0.html
  • taobao.item_get_app-4.0.2-7.0.html
  • taobao.item_get_app-4.0.3-7.0.html
  • taobao.item_get_app-4.0.4-7.0.html
  • taobao.item_get_app-4.0.5-7.0.html
  • taobao.item_get_app-4.0.6-7.0.html
  • taobao.item_get_app-4.0.7-7.0.html
  • taobao.item_get_app-4.0.8-7.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/taobao/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=520813250866

    参数说明:num_iid:淘宝商品ID
    type:为1时返回4.0.8-7.0版本数据

    响应参数

    Version:4.0.8-7.0 Date:2025-01-13

    名称 类型 必须 示例值 描述
    item
    Mix 1 获得淘宝app商品详情原数据(接口无库存信息)
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    $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" =>"taobao",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '520813250866',
    )
                    )
                );
     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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    		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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    	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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", 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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"520813250866"})// 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":"taobao",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"520813250866"}//num_iid=520813250866,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")!
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"];
    
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
      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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866");
             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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", (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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
        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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    content(r)
    url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item": {
            "title": "左西童装男童羽绒服冬季儿童三防加厚面包服2024新款女童保暖外套",
            "nick": "左西旗舰店",
            "num": "3万+",
            "rootCatId": "50008165",
            "price": "329.74",
            "promotedService": "7天无理由退换,包邮",
            "categoryId": "124230010",
            "videoPic": "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01gEjBBD1jbjrNPFn0S_!!1710394567.jpg",
            "item_imgs": [
                "//img.alicdn.com/i3/1710394567/O1CN017SvdOV1jbjpsp7oHD_!!1710394567.jpg",
                "//img.alicdn.com/i3/1710394567/O1CN01wdSeI61jbjpGneLca_!!1710394567.jpg",
                "//img.alicdn.com/i4/1710394567/O1CN01j0vFhm1jbjr2fDzTO_!!1710394567.jpg",
                "//img.alicdn.com/i2/1710394567/O1CN01hMMi9x1jbjpxmTKks_!!1710394567.jpg"
            ],
            "location": "江苏 无锡",
            "video": "http://cloud.video.taobao.com/play/u/1710394567/p/2/e/6/t/1/500226214100.mp4?appKey=38829",
            "props_name": {
                "skus": [
                    {
                        "propPath": "1627207:129819;122216343:50792021",
                        "skuId": "5528395753903"
                    },
                    {
                        "propPath": "1627207:129819;122216343:568",
                        "skuId": "5528395753904"
                    },
                    {
                        "propPath": "1627207:28326;122216343:3285954",
                        "skuId": "5528395753907"
                    },
                    {
                        "propPath": "1627207:28326;122216343:50792021",
                        "skuId": "5528395753909"
                    },
                    {
                        "propPath": "1627207:28326;122216343:568",
                        "skuId": "5528395753910"
                    },
                    {
                        "propPath": "1627207:28329;122216343:50792021",
                        "skuId": "5528395753915"
                    },
                    {
                        "propPath": "1627207:28329;122216343:568",
                        "skuId": "5528395753916"
                    },
                    {
                        "propPath": "1627207:28341;122216343:26774",
                        "skuId": "5528395753918"
                    },
                    {
                        "propPath": "1627207:28341;122216343:3285954",
                        "skuId": "5528395753919"
                    },
                    {
                        "propPath": "1627207:28341;122216343:3376466",
                        "skuId": "5528395753920"
                    },
                    {
                        "propPath": "1627207:28341;122216343:50792021",
                        "skuId": "5528395753921"
                    },
                    {
                        "propPath": "1627207:28341;122216343:568",
                        "skuId": "5528395753922"
                    },
                    {
                        "propPath": "1627207:28341;122216343:917",
                        "skuId": "5528395753923"
                    },
                    {
                        "propPath": "1627207:384044204;122216343:26774",
                        "skuId": "5528395753924"
                    },
                    {
                        "propPath": "1627207:384044204;122216343:3285954",
                        "skuId": "5528395753925"
                    },
                    {
                        "propPath": "1627207:384044204;122216343:3376466",
                        "skuId": "5528395753926"
                    },
                    {
                        "propPath": "1627207:384044204;122216343:50792021",
                        "skuId": "5528395753927"
                    },
                    {
                        "propPath": "1627207:384044204;122216343:568",
                        "skuId": "5528395753928"
                    },
                    {
                        "propPath": "1627207:8853034;122216343:26774",
                        "skuId": "5528395753930"
                    },
                    {
                        "propPath": "1627207:8853034;122216343:50792021",
                        "skuId": "5528395753933"
                    },
                    {
                        "propPath": "1627207:8853034;122216343:568",
                        "skuId": "5528395753934"
                    },
                    {
                        "propPath": "1627207:8853034;122216343:917",
                        "skuId": "5528395753935"
                    },
                    {
                        "propPath": "1627207:28341;122216343:40753898",
                        "skuId": "5593463901051"
                    },
                    {
                        "propPath": "1627207:45924010;122216343:568",
                        "skuId": "5696610639519"
                    },
                    {
                        "propPath": "1627207:45924010;122216343:50792021",
                        "skuId": "5696610639521"
                    },
                    {
                        "propPath": "1627207:47638530;122216343:3376466",
                        "skuId": "5704199069180"
                    },
                    {
                        "propPath": "1627207:384774177;122216343:26774",
                        "skuId": "5861794663821"
                    },
                    {
                        "propPath": "1627207:384774177;122216343:3285954",
                        "skuId": "5861794663822"
                    },
                    {
                        "propPath": "1627207:384774177;122216343:3376466",
                        "skuId": "5861794663823"
                    },
                    {
                        "propPath": "1627207:384774177;122216343:50792021",
                        "skuId": "5861794663825"
                    },
                    {
                        "propPath": "1627207:384774177;122216343:568",
                        "skuId": "5861794663826"
                    },
                    {
                        "propPath": "1627207:384774177;122216343:917",
                        "skuId": "5861794663827"
                    },
                    {
                        "propPath": "1627207:417036540;122216343:26774",
                        "skuId": "5861794663829"
                    },
                    {
                        "propPath": "1627207:417036540;122216343:3285954",
                        "skuId": "5861794663830"
                    },
                    {
                        "propPath": "1627207:417036540;122216343:3376466",
                        "skuId": "5861794663831"
                    },
                    {
                        "propPath": "1627207:417036540;122216343:50792021",
                        "skuId": "5861794663833"
                    },
                    {
                        "propPath": "1627207:417036540;122216343:568",
                        "skuId": "5861794663834"
                    },
                    {
                        "propPath": "1627207:417036540;122216343:917",
                        "skuId": "5861794663835"
                    },
                    {
                        "propPath": "1627207:28335;122216343:26774",
                        "skuId": "5694868176400"
                    },
                    {
                        "propPath": "1627207:28335;122216343:3285954",
                        "skuId": "5694868176401"
                    },
                    {
                        "propPath": "1627207:28335;122216343:3376466",
                        "skuId": "5694868176402"
                    },
                    {
                        "propPath": "1627207:28335;122216343:50792021",
                        "skuId": "5694868176404"
                    },
                    {
                        "propPath": "1627207:28335;122216343:568",
                        "skuId": "5694868176405"
                    },
                    {
                        "propPath": "1627207:28335;122216343:917",
                        "skuId": "5694868176406"
                    },
                    {
                        "propPath": "1627207:37939815;122216343:26774",
                        "skuId": "5694868176408"
                    },
                    {
                        "propPath": "1627207:37939815;122216343:3285954",
                        "skuId": "5694868176409"
                    },
                    {
                        "propPath": "1627207:37939815;122216343:3376466",
                        "skuId": "5694868176410"
                    },
                    {
                        "propPath": "1627207:37939815;122216343:50792021",
                        "skuId": "5694868176412"
                    },
                    {
                        "propPath": "1627207:37939815;122216343:568",
                        "skuId": "5694868176413"
                    },
                    {
                        "propPath": "1627207:37939815;122216343:917",
                        "skuId": "5694868176414"
                    },
                    {
                        "propPath": "1627207:407852397;122216343:26774",
                        "skuId": "5864084347181"
                    },
                    {
                        "propPath": "1627207:407852397;122216343:3285954",
                        "skuId": "5864084347182"
                    },
                    {
                        "propPath": "1627207:407852397;122216343:3376466",
                        "skuId": "5864084347183"
                    },
                    {
                        "propPath": "1627207:407852397;122216343:50792021",
                        "skuId": "5864084347185"
                    },
                    {
                        "propPath": "1627207:407852397;122216343:568",
                        "skuId": "5864084347186"
                    },
                    {
                        "propPath": "1627207:407852397;122216343:917",
                        "skuId": "5864084347187"
                    },
                    {
                        "propPath": "1627207:45061589;122216343:26774",
                        "skuId": "5685356496719"
                    },
                    {
                        "propPath": "1627207:45061589;122216343:3285954",
                        "skuId": "5685356496720"
                    },
                    {
                        "propPath": "1627207:45061589;122216343:3376466",
                        "skuId": "5685356496721"
                    },
                    {
                        "propPath": "1627207:45061589;122216343:50792021",
                        "skuId": "5685356496723"
                    },
                    {
                        "propPath": "1627207:45061589;122216343:568",
                        "skuId": "5685356496724"
                    },
                    {
                        "propPath": "1627207:45061589;122216343:917",
                        "skuId": "5685356496725"
                    },
                    {
                        "propPath": "1627207:159071882;122216343:26774",
                        "skuId": "5685356496727"
                    },
                    {
                        "propPath": "1627207:159071882;122216343:3285954",
                        "skuId": "5685356496728"
                    },
                    {
                        "propPath": "1627207:159071882;122216343:3376466",
                        "skuId": "5685356496729"
                    },
                    {
                        "propPath": "1627207:159071882;122216343:50792021",
                        "skuId": "5685356496731"
                    },
                    {
                        "propPath": "1627207:159071882;122216343:568",
                        "skuId": "5685356496732"
                    },
                    {
                        "propPath": "1627207:159071882;122216343:917",
                        "skuId": "5685356496733"
                    },
                    {
                        "propPath": "1627207:136056017;122216343:26774",
                        "skuId": "5685356496735"
                    },
                    {
                        "propPath": "1627207:136056017;122216343:3285954",
                        "skuId": "5685356496736"
                    },
                    {
                        "propPath": "1627207:136056017;122216343:3376466",
                        "skuId": "5685356496737"
                    },
                    {
                        "propPath": "1627207:136056017;122216343:50792021",
                        "skuId": "5685356496739"
                    },
                    {
                        "propPath": "1627207:136056017;122216343:568",
                        "skuId": "5685356496740"
                    },
                    {
                        "propPath": "1627207:136056017;122216343:917",
                        "skuId": "5685356496741"
                    },
                    {
                        "propPath": "1627207:8853034;122216343:137291",
                        "skuId": "5735150538160"
                    },
                    {
                        "propPath": "1627207:159071882;122216343:137291",
                        "skuId": "5685356496726"
                    }
                ],
                "props": [
                    {
                        "values": [
                            {
                                "vid": "129819",
                                "image": "//img.alicdn.com/i1/1710394567/O1CN01LrAigW1jbjqSHGPHT_!!1710394567.jpg",
                                "sortOrder": 8,
                                "name": "咖啡色",
                                "tags": [
                                    "最低价"
                                ]
                            },
                            {
                                "vid": "417036540",
                                "image": "//img.alicdn.com/i3/1710394567/O1CN01dOAZnU1jbjr56QeKN_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": ".灰色"
                            },
                            {
                                "vid": "384044204",
                                "image": "//img.alicdn.com/i3/1710394567/O1CN01ozY4eN1jbjr1zHsjD_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": ".蓝色"
                            },
                            {
                                "vid": "384774177",
                                "image": "//img.alicdn.com/i1/1710394567/O1CN01xWlFSu1jbjr7IUe6q_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": ".黑色"
                            },
                            {
                                "vid": "47638530",
                                "image": "//img.alicdn.com/i4/1710394567/O1CN01wXnvKa1jbjr7UN3KB_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "新年红"
                            },
                            {
                                "vid": "8853034",
                                "image": "//img.alicdn.com/i4/1710394567/O1CN01Cm46dk1jbjqQ4Jxkn_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "果绿色"
                            },
                            {
                                "vid": "28329",
                                "image": "//img.alicdn.com/i4/1710394567/O1CN01XFTkZP1jbjqwnM0Qq_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "紫色"
                            },
                            {
                                "vid": "28326",
                                "image": "//img.alicdn.com/i3/1710394567/O1CN01Urvjlp1jbjqzwEh5C_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "红色"
                            },
                            {
                                "vid": "136056017",
                                "image": "//img.alicdn.com/i1/1710394567/O1CN016ryV5e1jbjqyHuAvz_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "红色中长款"
                            },
                            {
                                "vid": "28335",
                                "image": "//img.alicdn.com/i2/1710394567/O1CN01kmKnt01jbjr5t0wuL_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "绿色"
                            },
                            {
                                "vid": "45924010",
                                "image": "//img.alicdn.com/i2/1710394567/O1CN01OSjmhq1jbjr3AA2ZC_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "蓝色."
                            },
                            {
                                "vid": "159071882",
                                "image": "//img.alicdn.com/i4/1710394567/O1CN01RKKrS91jbjqw9Cl88_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "蓝色中长款"
                            },
                            {
                                "vid": "28341",
                                "image": "//img.alicdn.com/i1/1710394567/O1CN01Ro4kev1jbjqPulRIj_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "黑色"
                            },
                            {
                                "vid": "37939815",
                                "image": "//img.alicdn.com/i2/1710394567/O1CN01N31XrY1jbjr7IlfvD_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "黑色."
                            },
                            {
                                "vid": "407852397",
                                "image": "//img.alicdn.com/i3/1710394567/O1CN01oIxQ961jbjr9vtUhZ_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "黑色.."
                            },
                            {
                                "vid": "45061589",
                                "image": "//img.alicdn.com/i2/1710394567/O1CN01brmUN71jbjqyHwn5d_!!1710394567.jpg",
                                "sortOrder": 0,
                                "name": "黑色中长款"
                            }
                        ],
                        "name": "颜色分类",
                        "hasImage": true,
                        "pid": "1627207"
                    },
                    {
                        "values": [
                            {
                                "vid": "40753898",
                                "sortOrder": 0,
                                "name": "101cm"
                            },
                            {
                                "vid": "568",
                                "sortOrder": 0,
                                "name": "110cm"
                            },
                            {
                                "vid": "50792021",
                                "sortOrder": 0,
                                "name": "120cm"
                            },
                            {
                                "vid": "3285954",
                                "sortOrder": 0,
                                "name": "130cm"
                            },
                            {
                                "vid": "3376466",
                                "sortOrder": 0,
                                "name": "140cm"
                            },
                            {
                                "vid": "917",
                                "sortOrder": 0,
                                "name": "150cm"
                            },
                            {
                                "vid": "26774",
                                "sortOrder": 0,
                                "name": "160cm"
                            },
                            {
                                "vid": "137291",
                                "sortOrder": 0,
                                "name": "170cm"
                            }
                        ],
                        "name": "参考身高",
                        "hasImage": false,
                        "pid": "122216343"
                    }
                ]
            },
            "skus": {
                "5528395753903": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753904": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5694868176412": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5694868176410": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5528395753907": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753909": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5694868176413": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5694868176414": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5704199069180": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5864084347187": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5864084347186": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5864084347183": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5864084347182": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5696610639519": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5864084347185": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5685356496724": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5685356496725": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5864084347181": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5685356496723": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5685356496720": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5685356496721": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5696610639521": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753930": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496719": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5528395753933": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753934": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753935": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753925": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663823": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496735": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5528395753926": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496736": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5528395753927": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663821": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496733": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5528395753928": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663822": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663827": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496731": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5685356496732": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5861794663825": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663826": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5735150538160": {
                    "Amount": "11.25",
                    "AmtDisplay": "¥11.25",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 549,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 416.54,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "549.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 549,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 72.46
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 11.25,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "416.54"
                        }
                    ]
                },
                "5528395753920": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753921": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496728": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5528395753922": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496729": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5528395753923": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496726": {
                    "Amount": "12.18",
                    "AmtDisplay": "¥12.18",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 589,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 451.26,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "589.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 589,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 77.74
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 12.18,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "451.26"
                        }
                    ]
                },
                "5528395753924": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496727": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5861794663834": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5694868176400": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5528395753915": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663835": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5694868176401": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5528395753916": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663833": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753918": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5694868176404": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5528395753919": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5694868176405": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5694868176402": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5685356496740": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5685356496741": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5694868176408": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5694868176409": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5694868176406": {
                    "Amount": "9.14",
                    "AmtDisplay": "¥9.14",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 459,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 338.42,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "459.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 459,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60.58
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.14,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "338.42"
                        }
                    ]
                },
                "5861794663830": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663831": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5593463901051": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5861794663829": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5528395753910": {
                    "Amount": "8.90",
                    "AmtDisplay": "¥8.90",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 449,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 329.74,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "449.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 449,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 59.26
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 8.9,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "329.74"
                        }
                    ]
                },
                "5685356496739": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                },
                "5685356496737": {
                    "Amount": "9.61",
                    "AmtDisplay": "¥9.61",
                    "promotionTags": [
                        {
                            "tagDisplay": "每200减30",
                            "tagType": "CROSS_SHOP",
                            "tagTypeDisplay": "跨店满减",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "1件8.68折",
                            "tagType": "SHOP",
                            "tagTypeDisplay": "满件折",
                            "tagPriority": 1
                        },
                        {
                            "tagDisplay": "包邮",
                            "tagType": "POST_FREE"
                        }
                    ],
                    "promotionPrice": 479,
                    "promotionTagList": [
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "shopPromotionPart",
                            "priority": 296,
                            "promotionDesc": "1件8.68折",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "tbCross",
                            "priority": 294,
                            "promotionDesc": "每200减30",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        },
                        {
                            "displayType": "border_style",
                            "borderColor": "rgba(254, 72, 0, 1)",
                            "promotionCode": "postFree",
                            "priority": 0,
                            "promotionDesc": "包邮",
                            "textColor": "rgba(254, 72, 0, 1)",
                            "colorForApp": {
                                "borderColor": "#FE4800",
                                "textColor": "#FE4800"
                            }
                        }
                    ],
                    "finalPromotionPrice": 355.78,
                    "multiItemCount": "",
                    "Rate": "2.70",
                    "calTkRate": 270,
                    "zkFinalPrice": "479.0",
                    "": "270%",
                    "Name": "",
                    "DisplayName": "",
                    "price": 479,
                    "promotionPricePath": [
                        {
                            "toolCode": "shopPromotionPart",
                            "promotionTitle": "满件折",
                            "promotionStartTime": 1735920000000,
                            "promotionDesc": "1件8.68折",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 63.22
                        },
                        {
                            "toolCode": "tbCross",
                            "promotionTitle": "跨店满减",
                            "promotionStartTime": 1736164800000,
                            "promotionDesc": "每200减30",
                            "promotionEndTime": 1737388799000,
                            "promotionFee": 60
                        }
                    ],
                    "multiItemPrice": "",
                    "calTkCommission": 9.61,
                    "unionPriceInfo": [
                        {
                            "label": "到手价",
                            "value": "355.78"
                        }
                    ]
                }
            },
            "shopId": "104595700",
            "skuid": "5861794663835",
            "promotionTags": [
                {
                    "tagDisplay": "每200减30",
                    "tagType": "CROSS_SHOP",
                    "tagTypeDisplay": "跨店满减",
                    "tagPriority": 0
                },
                {
                    "tagDisplay": "1件8.68折",
                    "tagType": "SHOP",
                    "tagTypeDisplay": "满件折",
                    "tagPriority": 0
                },
                {
                    "tagDisplay": "包邮",
                    "tagType": "POST_FREE"
                }
            ],
            "promotionTagList": [
                {
                    "displayType": "border_style",
                    "borderColor": "rgba(254, 72, 0, 1)",
                    "promotionCode": "shopPromotionPart",
                    "priority": 296,
                    "promotionDesc": "1件8.68折",
                    "textColor": "rgba(254, 72, 0, 1)",
                    "colorForApp": {
                        "borderColor": "#FE4800",
                        "textColor": "#FE4800"
                    }
                },
                {
                    "displayType": "border_style",
                    "borderColor": "rgba(254, 72, 0, 1)",
                    "promotionCode": "tbCross",
                    "priority": 294,
                    "promotionDesc": "每200减30",
                    "textColor": "rgba(254, 72, 0, 1)",
                    "colorForApp": {
                        "borderColor": "#FE4800",
                        "textColor": "#FE4800"
                    }
                },
                {
                    "displayType": "border_style",
                    "borderColor": "rgba(254, 72, 0, 1)",
                    "promotionCode": "postFree",
                    "priority": 0,
                    "promotionDesc": "包邮",
                    "textColor": "rgba(254, 72, 0, 1)",
                    "colorForApp": {
                        "borderColor": "#FE4800",
                        "textColor": "#FE4800"
                    }
                }
            ],
            "desc": [
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01EK5gMi1jbjrBSGDKt_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01yVI0sy1jbjrMZ6WAq_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01tAazNk1jbjpCNaV0P_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01ctEFD81jbjpaxY0VQ_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01tdYUCI1jbjqO2kZzg_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01VALtIK1jbjqHViHLp_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01ngOAO51jbjqQC6c8X_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01LavUx71jbjqQC9VIM_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01FioJU31jbjqP4iMOq_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01IZT7xk1jbjpG1bNqt_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN010p4KIf1jbjpEH188R_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN0177q9ca1jbjpGxumbV_!!1710394567.gif",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN013ZMnD11jbjpG1YZEl_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN018YpGo71jbjp7aofJu_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01G6X71j1jbjpBzlZ3j_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01x8RQv51jbjpD3DNWY_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN014f5Ii01jbjpHWEoUk_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01njZpLw1jbjpEGzirn_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01CE2qKE1jbjpBziHJK_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01pFgHUl1jbjp1d1COV_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01BcVFGs1jbjqPk4ASo_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01nyDtmr1jbjpBQ22xP_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01CZmbev1jbjp7TAhz7_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01fNFBoG1jbjoTDY2yu_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01BhLkJk1jbjoUvozXq_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01kFZPt01jbjqxL8L4c_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01pOrWLC1jbjr092cjY_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01TJuGC11jbjqsIP37d_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01eOYq7x1jbjr7InRfE_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01FrrZzD1jbjr0sbW2R_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01h262a01jbjqzqCHJj_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01obCcie1jbjqw8wunY_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN016dnwaI1jbjr50OcBv_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01rdt5XO1jbjr0eGjUm_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN011pKCEB1jbjr7ATXlK_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01MujM1e1jbjr5ucqIq_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01c96iFK1jbjpGnHFec_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01vrHCZT1jbjpFbWBEU_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01hk58Nt1jbjp7cW4AQ_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01SKNNhi1jbjpFbZX9w_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01C4Z1A41jbjpG2DiSG_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01z9auys1jbjpC1YTIH_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01cHBoJZ1jbjpGzbJOS_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN017ER2XY1jbjpG3IeRl_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01mkxOfA1jbjp7cUrKF_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01OiTgsO1jbjpCoaFr2_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN013b38wZ1jbjpFbYrYB_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01rM5Nw81jbjpEuV7y7_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01pLScv61jbjpEInQxP_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01wuOZUk1jbjqPSyAlq_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN019vVLoO1jbjqMcfj1P_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01PVg5FO1jbjqP7bsWo_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01rmX9dj1jbjqPSJlHB_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01eXa5uu1jbjqMq1E4C_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01xv5kIX1jbjpEPCjCG_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01lXta801jbjpEIpFEQ_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01YhyCBK1jbjpD4vmi6_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN016l12NO1jbjpD4xzxq_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01qh71zz1jbjpCobzzI_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01kKWsuQ1jbjpG3HAyi_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01gn5s3H1jbjpG2CRR8_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01fb1LCM1jbjpFbWa8F_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN017dtXuY1jbjpGnHeaq_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01Ud6Jtl1jbjpGzbqcG_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01GfCcig1jbjpEPBr6S_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01rIvkVi1jbjpC1XCFA_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01N8O0LC1jbjpG3GZWA_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01ocvugm1jbjpI4QmiF_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01Prmty71jbjpG3JFtS_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01zflISZ1jbjpGzcBRv_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01QTUEHe1jbjpI4Rack_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01o2pCGZ1jbjpG3HJKW_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01E5gFYD1jbjpI4PZtZ_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01WuV5ce1jbjquPc8N3_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01Qwaua61jbjqvsEpAm_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN01tGefBa1jbjqxiA7xX_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01oma7E61jbjqx1flla_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01OebkqS1jbjqyHfsJF_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01cHQOTT1jbjqyHhU9b_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN014hJCdY1jbjqzwbJiw_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01v6xCvf1jbjqynuUXy_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01ZWLgVY1jbjr0cRObc_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01SCvw2F1jbjr5C6tvX_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i1/1710394567/O1CN01qig4Wi1jbjr6jj1Ml_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01YUjR041jbjr6ACnv4_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01ydbmAd1jbjr3UkVEI_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01F3RCKW1jbjr8xb6nv_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01eyAy0p1jbjr6uMizX_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN013ciHgs1jbjr8vgD4S_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN018cV1Wa1jbjr79mFCR_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i2/1710394567/O1CN01Vb5Yuj1jbjr7y0QKn_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01vtrBO21jbjr7jiEE0_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01KZvfNq1jbjrEk1qWd_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/1710394567/O1CN012LN5I51jbjrFjBbz5_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i4/1710394567/O1CN01o3xDAV1jbjrGghrWr_!!1710394567.jpg",
                "https://img.alicdn.com/imgextra/i3/O1CN01MsWlBa29wVnysxUvn_!!6000000008132-2-tps-750-880.png"
            ],
            "attribute": [
                {
                    "name": "风格",
                    "value": "休闲"
                },
                {
                    "name": "品牌",
                    "value": "左西"
                },
                {
                    "name": "服装版型",
                    "value": "宽松型"
                },
                {
                    "name": "含绒量",
                    "value": "90%"
                },
                {
                    "name": "面料",
                    "value": "锦纶"
                },
                {
                    "name": "材质成分",
                    "value": "聚酯纤维100%"
                },
                {
                    "name": "绒子含量",
                    "value": "85%(含)-90%(不含)"
                },
                {
                    "name": "货号",
                    "value": "ZY244004"
                },
                {
                    "name": "填充物",
                    "value": "白鸭绒"
                },
                {
                    "name": "适用年龄",
                    "value": "4岁 10岁 12岁 9岁 6岁 8岁 5岁 7岁 11岁"
                },
                {
                    "name": "是否带帽子",
                    "value": "有帽不可拆"
                },
                {
                    "name": "上市年份季节",
                    "value": "2024年冬季"
                },
                {
                    "name": "厚薄",
                    "value": "加厚"
                },
                {
                    "name": "里料材质成分",
                    "value": "聚酯纤维100%"
                },
                {
                    "name": "衣长",
                    "value": "常规款"
                },
                {
                    "name": "衣门襟",
                    "value": "拉链"
                },
                {
                    "name": "适用性别",
                    "value": "男"
                },
                {
                    "name": "材质功能",
                    "value": "抗寒"
                },
                {
                    "name": "颜色分类",
                    "value": "紫色 红色 绿色 黑色 果绿色 .蓝色 .黑色 .灰色 黑色中长款 红色中长款 蓝色中长款 新年红 黑色.. 黑色. 蓝色. 咖啡色"
                },
                {
                    "name": "参考身高",
                    "value": "140cm 130cm 150cm 160cm 110cm 170cm 120cm 101cm"
                }
            ],
            "num_iid": "820127707631",
            "_ddf": "lh",
            "format_check": "ok"
        },
        "error": "",
        "secache": "d0eaee07b2120ef03753cb2528e5f642",
        "secache_time": 1736753031,
        "secache_date": "2025-01-13 15:23:51",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "0.588",
        "server_time": "Beijing/2025-01-13 15:23:51",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "820127707631"
        },
        "api_type": "taobao",
        "server_memory": "6.3MB",
        "last_id": false
    }
    异常示例
    {
    		"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": "15ee0ffc041242"}
    相关资料
    错误码解释
    状态代码(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(微信同号)