ElasticSeacher 基本查询 方法一

分组后排序

  QueryBuilder bool = QueryBuilders.boolQuery().must(QueryBuilders.termQuery("IsPresent",0));
               //true升序   false是降序
        TermsAggregationBuilder teamAgg = AggregationBuilders.terms("pos_count").field("NewsId").order(Terms.Order.count(true)).size(Integer.MAX_VALUE);
        SearchRequestBuilder builder = client.prepareSearch(esIndexConfig.getIndex()).setTypes(esIndexConfig.getType());
        SearchResponse response = builder.setQuery(bool).addAggregation(teamAgg).execute().actionGet();
        // SearchResponse response= builder.setQuery(bool).setSize(0).execute().actionGet();
        System.out.println(response.getHits().totalHits);
        Terms terms = response.getAggregations().get("pos_count");
        /**得到的是分组数*/
        System.out.println(terms.getBuckets().size());
        Iterator<?> classBucketIt = terms.getBuckets().iterator();
        SearchHits searchHit=response.getHits();
        while(classBucketIt.hasNext())

        {
            Terms.Bucket classBucket =(Terms.Bucket) classBucketIt.next();
            System.out.println(  "NewId: " + classBucket.getDocCount() +"调结果。");

        }

多重组合排序并取得排序后的数据集

先经过VendorId字段排序 后经过NewsId排序 top是用来取得结果集,没有top只能得到

这种结果
17088791年级17088791班有30个学生。
17088816年级17088816班有10个学生。
17086707年级17086707班有9个学生。
17089274年级17089274班有9个学生。
17089275年级17089275班有8个学生。
17089270年级17089270班有4个学生。
17089198年级17089198班有2个学生。
17089199年级17089199班有2个学生。
17089200年级17089200班有2个学生。
17089265年级17089265班有2个学生。
17089267年级17089267班有2个学生。
17088796年级17088796班有1个学生。
17088798年级17088798班有1个学生。
17088799年级17088799班有1个学生。
17089266年级17089266班有1个学生。





 QueryBuilder bool = QueryBuilders.boolQuery().must(QueryBuilders.termQuery("IsPresent", 0));
        TermsAggregationBuilder teamAgg = AggregationBuilders.terms("VendorId").field("VendorId").order(Terms.Order.count(false)).size(Integer.MAX_VALUE);

         TermsAggregationBuilder team = AggregationBuilders.terms("NewsId").field("NewsId").order(Terms.Order.count(false)).size(Integer.MAX_VALUE);
         team.subAggregation(AggregationBuilders.topHits("top").size(Integer.MAX_VALUE));
         teamAgg.subAggregation(team);

        SearchRequestBuilder builder = client.prepareSearch(esIndexConfig.getIndex()).setTypes(esIndexConfig.getType());
        SearchResponse response = builder.setQuery(bool).addAggregation(teamAgg).setSize(100).execute().actionGet();
        // SearchResponse response= builder.setQuery(bool).setSize(0).execute().actionGet();
        System.out.println(response.getHits().totalHits);
        Terms terms = response.getAggregations().get("VendorId");
        /**得到的是分组数*/
        System.out.println("分组 +VendorId"+terms.getBuckets().size());


        Iterator<?> classBucketIt = terms.getBuckets().iterator();
        SearchHits searchHit = response.getHits();


        for(Terms.Bucket entry:terms.getBuckets()){

            Terms terTwo=entry.getAggregations().get("NewsId");
            System.out.println("分组 +NewsId"+terms.getBuckets().size());


            for(Terms.Bucket bucket:terTwo.getBuckets()){

                 System.out.println(entry.getKeyAsString()+"____"+bucket.getKeyAsString()+"有"+bucket.getDocCount());
                 System.out.println(bucket.getAggregations().asList().size());
                 TopHits topHits = bucket.getAggregations().get("top");

                 for(SearchHit hit:topHits.getHits()){

                     System.out.println(hit.getSourceAsString());

                 }
            }



        }



    }

结果如下

{"VendorId":50002218,"NewsId":17086707,"CarId":103302,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":6.00,"FavorablePrice":1.00,"CarReferPrice":16.9800,"SalePrice":15.9800,"NId":17086707,"VendorPrice":15.5000,"StoreState":1,"NewCarID":103302,"CarName":"2.0L 手动 两驱 时尚型","CarTransmissionType":"手动","CarYearType":2013,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0588928150765606595995288575,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
{"VendorId":50002218,"NewsId":17086707,"CarId":116436,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":5.00,"FavorablePrice":1.00,"CarReferPrice":19.6900,"SalePrice":18.6900,"NId":17086707,"VendorPrice":20.0000,"StoreState":1,"NewCarID":116436,"CarName":"1.6T 双离合 领先型 两驱","CarTransmissionType":"双离合","CarYearType":2015,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0507872016251904520060944642,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
{"VendorId":50002218,"NewsId":17086707,"CarId":116446,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":6.00,"FavorablePrice":1.00,"CarReferPrice":17.9900,"SalePrice":16.9900,"NId":17086707,"VendorPrice":18.0000,"StoreState":1,"NewCarID":116446,"CarName":"1.6T 双离合 智能型 两驱","CarTransmissionType":"双离合","CarYearType":2015,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0555864369093941078376876042,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
{"VendorId":50002218,"NewsId":17086707,"CarId":116451,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":6.00,"FavorablePrice":1.00,"CarReferPrice":16.4900,"SalePrice":15.4900,"NId":17086707,"VendorPrice":16.0000,"StoreState":1,"NewCarID":116451,"CarName":"2.0L 自动 舒适型 两驱","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.06064281382656155245603396,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
{"VendorId":50002218,"NewsId":17086707,"CarId":116452,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":6.00,"FavorablePrice":1.00,"CarReferPrice":15.9900,"SalePrice":14.9900,"NId":17086707,"VendorPrice":15.9900,"StoreState":1,"NewCarID":116452,"CarName":"2.0L 手动 舒适型 两驱","CarTransmissionType":"手动","CarYearType":2015,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0625390869293308317698561601,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
{"VendorId":50002218,"NewsId":17086707,"CarId":116091,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":4.00,"FavorablePrice":1.00,"CarReferPrice":23.9900,"SalePrice":22.9900,"NId":17086707,"VendorPrice":24.0000,"StoreState":1,"NewCarID":116091,"CarName":"1.6T 双离合 旗舰型 四驱","CarTransmissionType":"双离合","CarYearType":2015,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0416840350145894122551062943,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
{"VendorId":50002218,"NewsId":17086707,"CarId":116449,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":6.00,"FavorablePrice":1.00,"CarReferPrice":17.4900,"SalePrice":16.4900,"NId":17086707,"VendorPrice":17.4900,"StoreState":1,"NewCarID":116449,"CarName":"2.0L 自动 智能型 两驱","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0571755288736420811892510006,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
{"VendorId":50002218,"NewsId":17086707,"CarId":116433,"CarImage":"http://img1.bitautoimg.com/autoalbum/files/20150810/534/21252753412596_4198300_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":5.00,"FavorablePrice":1.00,"CarReferPrice":21.5900,"SalePrice":20.5900,"NId":17086707,"VendorPrice":22.0000,"StoreState":1,"NewCarID":116433,"CarName":"1.6T 双离合 尊贵型 四驱","CarTransmissionType":"双离合","CarYearType":2015,"CsId":1574,"CsShowName":"全新途胜","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0463177396943029180176007411,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-02-11T10:26:00+08:00","StartDateTime":"2018-02-11T00:00:00+08:00","EndDateTime":"2018-03-12T00:00:00+08:00","LastModifyTime":"2018-02-11T10:26:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8177881+08:00"}
50002218____170892749
1
{"VendorId":50002218,"NewsId":17089274,"CarId":115717,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":24.9800,"SalePrice":24.9800,"NId":17089274,"VendorPrice":25.5000,"StoreState":1,"NewCarID":115717,"CarName":"2.0T 四驱 自动 智能型 5座","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":115718,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":23.9800,"SalePrice":23.9800,"NId":17089274,"VendorPrice":23.7700,"StoreState":1,"NewCarID":115718,"CarName":"2.0T 两驱 自动 智能型 5座","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":114034,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":23.9800,"SalePrice":23.9800,"NId":17089274,"VendorPrice":24.6000,"StoreState":1,"NewCarID":114034,"CarName":"2.4L 两驱 自动 智能型","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":114035,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":24.9800,"SalePrice":24.9800,"NId":17089274,"VendorPrice":25.0000,"StoreState":1,"NewCarID":114035,"CarName":"2.4L 四驱 自动 智能型","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":114037,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":28.9800,"SalePrice":28.9800,"NId":17089274,"VendorPrice":30.0000,"StoreState":1,"NewCarID":114037,"CarName":"2.0T 四驱 自动 顶级型 7座","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":114032,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":20.9800,"SalePrice":20.9800,"NId":17089274,"VendorPrice":22.0000,"StoreState":1,"NewCarID":114032,"CarName":"2.4L 两驱 手动 舒适型","CarTransmissionType":"手动","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":114033,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":21.9800,"SalePrice":21.9800,"NId":17089274,"VendorPrice":24.4000,"StoreState":1,"NewCarID":114033,"CarName":"2.4L 两驱 自动 舒适型","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":114036,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":25.6800,"SalePrice":25.6800,"NId":17089274,"VendorPrice":25.5500,"StoreState":1,"NewCarID":114036,"CarName":"2.0T 四驱 自动 智能型 7座","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":50002218,"NewsId":17089274,"CarId":115719,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20130109/519/17291451996479_2435044_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":0.00,"FavorablePrice":0.00,"CarReferPrice":21.9800,"SalePrice":21.9800,"NId":17089274,"VendorPrice":21.8800,"StoreState":1,"NewCarID":115719,"CarName":"2.0T 两驱 自动 舒适型 5座","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":3821,"CsShowName":"全新胜达","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T10:22:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T10:22:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
50002218____170892704
1
{"VendorId":50002218,"NewsId":17089270,"CarId":115573,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20151008/168/16511116860762_4272254_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":8.00,"FavorablePrice":1.00,"CarReferPrice":12.0800,"SalePrice":11.0800,"NId":17089270,"VendorPrice":12.0800,"StoreState":1,"NewCarID":115573,"CarName":"1.6L 自动 豪华型","CarTransmissionType":"自动","CarYearType":2015,"CsId":2334,"CsShowName":"悦动","CsLevelId":4,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0827814569536423841059602649,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-14T09:36:00+08:00","StartDateTime":"2018-08-14T00:00:00+08:00","EndDateTime":"2018-09-12T00:00:00+08:00","LastModifyTime":"2018-08-14T09:36:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089270,"CarId":115569,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20151008/168/16511116860762_4272254_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":10.00,"FavorablePrice":1.00,"CarReferPrice":9.9800,"SalePrice":8.9800,"NId":17089270,"VendorPrice":10.0000,"StoreState":1,"NewCarID":115569,"CarName":"1.6L 手动 舒适型","CarTransmissionType":"手动","CarYearType":2015,"CsId":2334,"CsShowName":"悦动","CsLevelId":4,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.1002004008016032064128256513,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-14T09:36:00+08:00","StartDateTime":"2018-08-14T00:00:00+08:00","EndDateTime":"2018-09-12T00:00:00+08:00","LastModifyTime":"2018-08-14T09:36:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089270,"CarId":115571,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20151008/168/16511116860762_4272254_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":9.00,"FavorablePrice":1.00,"CarReferPrice":10.9800,"SalePrice":9.9800,"NId":17089270,"VendorPrice":10.9800,"StoreState":1,"NewCarID":115571,"CarName":"1.6L 手动 豪华型","CarTransmissionType":"手动","CarYearType":2015,"CsId":2334,"CsShowName":"悦动","CsLevelId":4,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0910746812386156648451730419,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-14T09:36:00+08:00","StartDateTime":"2018-08-14T00:00:00+08:00","EndDateTime":"2018-09-12T00:00:00+08:00","LastModifyTime":"2018-08-14T09:36:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089270,"CarId":115570,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20151008/168/16511116860762_4272254_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":9.00,"FavorablePrice":1.00,"CarReferPrice":10.9800,"SalePrice":9.9800,"NId":17089270,"VendorPrice":9.5000,"StoreState":1,"NewCarID":115570,"CarName":"1.6L 自动 舒适型","CarTransmissionType":"自动","CarYearType":2015,"CsId":2334,"CsShowName":"悦动","CsLevelId":4,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0910746812386156648451730419,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-14T09:36:00+08:00","StartDateTime":"2018-08-14T00:00:00+08:00","EndDateTime":"2018-09-12T00:00:00+08:00","LastModifyTime":"2018-08-14T09:36:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
50002218____170891982
1
{"VendorId":50002218,"NewsId":17089198,"CarId":113676,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":7.00,"FavorablePrice":1.00,"CarReferPrice":14.9800,"SalePrice":13.9800,"NId":17089198,"VendorPrice":14.0000,"StoreState":1,"NewCarID":113676,"CarName":"2.0L GL 手动 两驱 舒适型 国IV","CarTransmissionType":"手动","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0667556742323097463284379172,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-27T17:54:00+08:00","StartDateTime":"2018-07-27T00:00:00+08:00","EndDateTime":"2018-08-25T00:00:00+08:00","LastModifyTime":"2018-07-27T18:21:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089198,"CarId":113675,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":7.00,"FavorablePrice":1.00,"CarReferPrice":14.9800,"SalePrice":13.9800,"NId":17089198,"VendorPrice":15.0000,"StoreState":1,"NewCarID":113675,"CarName":"2.0L GL 手动 两驱 舒适型 国V","CarTransmissionType":"手动","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0667556742323097463284379172,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-27T17:54:00+08:00","StartDateTime":"2018-07-27T00:00:00+08:00","EndDateTime":"2018-08-25T00:00:00+08:00","LastModifyTime":"2018-07-27T18:21:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
50002218____170891992
1
{"VendorId":50002218,"NewsId":17089199,"CarId":105150,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":6.00,"FavorablePrice":1.11,"CarReferPrice":19.6800,"SalePrice":18.5700,"NId":17089199,"VendorPrice":0.0000,"StoreState":1,"NewCarID":105150,"CarName":"2.0L GLS 自动 两驱 智能型 国IV","CarTransmissionType":"手自一体","CarYearType":2013,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0564024390243902439024390244,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-27T18:02:00+08:00","StartDateTime":"2018-07-27T00:00:00+08:00","EndDateTime":"2018-08-25T00:00:00+08:00","LastModifyTime":"2018-07-27T18:02:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089199,"CarId":105151,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":6.00,"FavorablePrice":1.11,"CarReferPrice":19.6800,"SalePrice":18.5700,"NId":17089199,"VendorPrice":0.0000,"StoreState":1,"NewCarID":105151,"CarName":"2.0L GLS 自动 两驱 智能型 国V","CarTransmissionType":"手自一体","CarYearType":2013,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0564024390243902439024390244,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-27T18:02:00+08:00","StartDateTime":"2018-07-27T00:00:00+08:00","EndDateTime":"2018-08-25T00:00:00+08:00","LastModifyTime":"2018-07-27T18:02:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
50002218____170892002
1
{"VendorId":50002218,"NewsId":17089200,"CarId":113673,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":7.00,"FavorablePrice":1.21,"CarReferPrice":16.3800,"SalePrice":15.1700,"NId":17089200,"VendorPrice":16.0000,"StoreState":1,"NewCarID":113673,"CarName":"2.0L GL 自动 两驱 舒适型 国IV","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0738705738705738705738705739,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-27T18:20:00+08:00","StartDateTime":"2018-07-27T00:00:00+08:00","EndDateTime":"2018-08-25T00:00:00+08:00","LastModifyTime":"2018-07-27T18:20:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089200,"CarId":113674,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":7.00,"FavorablePrice":1.21,"CarReferPrice":16.3800,"SalePrice":15.1700,"NId":17089200,"VendorPrice":16.0000,"StoreState":1,"NewCarID":113674,"CarName":"2.0L GL 自动 两驱 舒适型 国V","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0738705738705738705738705739,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-27T18:20:00+08:00","StartDateTime":"2018-07-27T00:00:00+08:00","EndDateTime":"2018-08-25T00:00:00+08:00","LastModifyTime":"2018-07-27T18:20:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
50002218____170892652
1
{"VendorId":50002218,"NewsId":17089265,"CarId":113569,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":5.00,"FavorablePrice":1.01,"CarReferPrice":22.2800,"SalePrice":21.2700,"NId":17089265,"VendorPrice":21.2800,"StoreState":1,"NewCarID":113569,"CarName":"2.4L GLX 自动 四驱 领先型 国V","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0453321364452423698384201077,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-31T13:36:00+08:00","StartDateTime":"2018-07-31T00:00:00+08:00","EndDateTime":"2018-08-29T00:00:00+08:00","LastModifyTime":"2018-07-31T13:48:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089265,"CarId":113664,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":5.00,"FavorablePrice":1.01,"CarReferPrice":22.2800,"SalePrice":21.2700,"NId":17089265,"VendorPrice":20.2800,"StoreState":1,"NewCarID":113664,"CarName":"2.4L GLX 自动 四驱 领先型 国IV","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0453321364452423698384201077,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-31T13:36:00+08:00","StartDateTime":"2018-07-31T00:00:00+08:00","EndDateTime":"2018-08-29T00:00:00+08:00","LastModifyTime":"2018-07-31T13:48:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
50002218____170892672
1
{"VendorId":50002218,"NewsId":17089267,"CarId":113666,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":7.00,"FavorablePrice":1.35,"CarReferPrice":19.6800,"SalePrice":18.3300,"NId":17089267,"VendorPrice":19.1800,"StoreState":1,"NewCarID":113666,"CarName":"2.4L GLX 自动 两驱 领先型 国V","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0685975609756097560975609756,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-31T14:35:00+08:00","StartDateTime":"2018-07-31T00:00:00+08:00","EndDateTime":"2018-08-29T00:00:00+08:00","LastModifyTime":"2018-08-03T10:02:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
{"VendorId":50002218,"NewsId":17089267,"CarId":113669,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":7.00,"FavorablePrice":1.35,"CarReferPrice":20.1800,"SalePrice":18.8300,"NId":17089267,"VendorPrice":20.1800,"StoreState":1,"NewCarID":113669,"CarName":"2.0L GLS 自动 四驱 智能型 国V ","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0668979187314172447968285431,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-31T14:35:00+08:00","StartDateTime":"2018-07-31T00:00:00+08:00","EndDateTime":"2018-08-29T00:00:00+08:00","LastModifyTime":"2018-08-03T10:02:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
50002218____170887961
1
{"VendorId":50002218,"NewsId":17088796,"CarId":109991,"CarImage":"//img1.bitautoimg.com/autoalbum/files/20140515/249/10054924946479_3331654_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":9.00,"FavorablePrice":1.00,"CarReferPrice":10.6900,"SalePrice":9.6900,"NId":17088796,"VendorPrice":11.0000,"StoreState":1,"NewCarID":109991,"CarName":"1.6L TOP AT","CarTransmissionType":"自动","CarYearType":2014,"CsId":3167,"CsShowName":"瑞纳三厢","CsLevelId":2,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0935453695042095416276894294,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-19T16:30:00+08:00","StartDateTime":"2018-07-19T00:00:00+08:00","EndDateTime":"2018-08-17T00:00:00+08:00","LastModifyTime":"2018-07-19T16:30:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8197882+08:00"}
50002218____170887981
1
{"VendorId":50002218,"NewsId":17088798,"CarId":110335,"CarImage":"//img1.bitautoimg.com/autoalbum/files/20140306/456/11181245697570_3185959_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":15.00,"FavorablePrice":1.11,"CarReferPrice":7.2900,"SalePrice":6.1800,"NId":17088798,"VendorPrice":7.2900,"StoreState":1,"NewCarID":110335,"CarName":"1.4 GL MT","CarTransmissionType":"手动","CarYearType":2014,"CsId":4151,"CsShowName":"瑞奕","CsLevelId":2,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.1522633744855967078189300412,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-19T18:24:00+08:00","StartDateTime":"2018-07-19T00:00:00+08:00","EndDateTime":"2018-08-17T00:00:00+08:00","LastModifyTime":"2018-07-19T18:24:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8197882+08:00"}
50002218____170887991
1
{"VendorId":50002218,"NewsId":17088799,"CarId":109827,"CarImage":"//img1.bitautoimg.com/autoalbum/files/20140515/249/10054924946479_3331654_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":14.00,"FavorablePrice":1.02,"CarReferPrice":7.3900,"SalePrice":6.3700,"NId":17088799,"VendorPrice":8.0000,"StoreState":1,"NewCarID":109827,"CarName":"1.4L GS MT","CarTransmissionType":"手动","CarYearType":2014,"CsId":3167,"CsShowName":"瑞纳三厢","CsLevelId":2,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.1380243572395128552097428958,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-19T18:32:00+08:00","StartDateTime":"2018-07-19T00:00:00+08:00","EndDateTime":"2018-08-17T00:00:00+08:00","LastModifyTime":"2018-07-19T18:32:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8197882+08:00"}
50002218____170892661
1
{"VendorId":50002218,"NewsId":17089266,"CarId":113670,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20120503/456/17263245600634_1898775_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":50002218,"DealerName":"易车互联公司","BusinessModelId":2,"VendorTel":"18001353123$010-65432123$010-65432124","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":9999,"Discount":5.00,"FavorablePrice":1.03,"CarReferPrice":20.1800,"SalePrice":19.1500,"NId":17089266,"VendorPrice":20.1800,"StoreState":1,"NewCarID":113670,"CarName":"2.0L GLS 自动 四驱 智能型 国IV","CarTransmissionType":"手自一体","CarYearType":2015,"CsId":2874,"CsShowName":"北京现代ix35","CsLevelId":64,"CpCountry":1,"CbName":"北京现代","CbId":10062,"CMBName":"现代","CMBID":13,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.051040634291377601585728444,"MobileDimWeightSort":60001,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-07-31T14:23:00+08:00","StartDateTime":"2018-07-31T00:00:00+08:00","EndDateTime":"2018-08-29T00:00:00+08:00","LastModifyTime":"2018-07-31T14:30:00+08:00","DealerLastmodifyTime":"2017-04-25T18:03:00+08:00","TimeStamp":"2018-08-16T14:39:07.8227884+08:00"}
分组 +NewsId2
100008562____170892758
1
{"VendorId":100008562,"NewsId":17089275,"CarId":113832,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":4.00,"FavorablePrice":1.00,"CarReferPrice":26.5600,"SalePrice":25.5600,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":113832,"CarName":"Sportback 40TFSI 双离合 舒适型 ","CarTransmissionType":"双离合","CarYearType":2015,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0376506024096385542168674699,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8247885+08:00"}
{"VendorId":100008562,"NewsId":17089275,"CarId":113833,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":4.00,"FavorablePrice":1.00,"CarReferPrice":26.9600,"SalePrice":25.9600,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":113833,"CarName":"Limousine 40TFSI 双离合 舒适型 ","CarTransmissionType":"双离合","CarYearType":2015,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0370919881305637982195845697,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8247885+08:00"}
{"VendorId":100008562,"NewsId":17089275,"CarId":110469,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":5.00,"FavorablePrice":1.00,"CarReferPrice":21.8900,"SalePrice":20.8900,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":110469,"CarName":"Sportback 35TFSI 时尚型","CarTransmissionType":"双离合","CarYearType":2014,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0456829602558245774326176336,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":100008562,"NewsId":17089275,"CarId":110470,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":4.00,"FavorablePrice":1.00,"CarReferPrice":24.8800,"SalePrice":23.8800,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":110470,"CarName":"Sportback 35TFSI 舒适型","CarTransmissionType":"双离合","CarYearType":2014,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0401929260450160771704180064,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8237884+08:00"}
{"VendorId":100008562,"NewsId":17089275,"CarId":113850,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":5.00,"FavorablePrice":1.00,"CarReferPrice":19.0900,"SalePrice":18.0900,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":113850,"CarName":"Limousine 35TFSI 手动 进取型","CarTransmissionType":"手动","CarYearType":2015,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0523834468308014667365112624,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8247885+08:00"}
{"VendorId":100008562,"NewsId":17089275,"CarId":113851,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":5.00,"FavorablePrice":1.00,"CarReferPrice":18.4900,"SalePrice":17.4900,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":113851,"CarName":"Sportback 35TFSI 手动 进取型","CarTransmissionType":"手动","CarYearType":2015,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.05408328826392644672796106,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8247885+08:00"}
{"VendorId":100008562,"NewsId":17089275,"CarId":110471,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":3.00,"FavorablePrice":1.00,"CarReferPrice":28.6700,"SalePrice":27.6700,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":110471,"CarName":"Sportback 35TFSI 豪华型","CarTransmissionType":"双离合","CarYearType":2014,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0348796651552145099407045692,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8247885+08:00"}
{"VendorId":100008562,"NewsId":17089275,"CarId":113831,"CarImage":"https://img1.bitautoimg.com/autoalbum/files/20150427/716/14170671611294_4014532_3.jpg","IsPresent":0,"PresentPrice":0.00,"DealerId":100008562,"DealerName":"北京客户部","BusinessModelId":2,"VendorTel":"12345678$010-68492345$18612357176","PId":2,"PName":"北京","CityId":201,"CityName":"北京","SaleRegionType":2,"Discount":3.00,"FavorablePrice":1.00,"CarReferPrice":29.6700,"SalePrice":28.6700,"NId":17089275,"VendorPrice":0.0000,"StoreState":1,"NewCarID":113831,"CarName":"Limousine 40TFSI 双离合 豪华型 ","CarTransmissionType":"双离合","CarYearType":2015,"CsId":3999,"CsShowName":"奥迪A3","CsLevelId":4,"CpCountry":1,"CbName":"一汽奥迪","CbId":10000,"CMBName":"奥迪","CMBID":9,"CarColor":"","AreaId":110108,"AreaName":"海淀区","JiangFu":0.0337040781934614088304684867,"MobileDimWeightSort":0,"PCDimWeightSort":64001,"MediaIds":"1,2,3,4,5,11,16,17,18,20,22","MediaIdsArr":[1,2,3,4,5,11,16,17,18,20,22],"CityNameList":"","ProvinceSpell":"beijing","CitySpell":"beijing","NewsPubTime":"2018-08-15T16:27:00+08:00","StartDateTime":"2018-08-15T00:00:00+08:00","EndDateTime":"2018-09-13T00:00:00+08:00","LastModifyTime":"2018-08-15T16:27:00+08:00","DealerLastmodifyTime":"2013-07-24T10:06:00+08:00","TimeStamp":"2018-08-16T14:39:07.8247885+08:00"}
2018-08-20 17:44:54.797  INFO 2100 --- [       Thread-5] o.s.w.c.s.GenericWebApplicationContext   : Closing org.springframework.web.context.support.GenericWebApplicationContext@5ed731d0: startup date [Mon Aug 20 17:44:48 CST 2018]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@4be29ed9
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值