【OperationsMetadata】描述 WFS 服务器支持的操作以及每个操作的参数

WFS 的当前版本是2.0.0。GeoServer 支持版本 2.0.0、1.1.0 和 1.0.0。尽管版本之间存在一些重要差异,但请求语法通常保持不变, WFS 的所有版本都支持以下操作:

GetCapabilities 生成描述服务器提供的 WFS 服务以及有效的 WFS 操作和参数的元数据文档
DescribeFeatureType 返回 WFS 服务支持的要素类型的描述
GetFeature 返回来自数据源的特征选择,包括几何和属性值
LockFeature 防止通过永久特征锁编辑特征
Transaction 通过创建、更新和删除来编辑现有要素类型

以下操作仅在2.0.0 版本中可用

GetPropertyValue 从使用查询表达式识别的一组特征的数据存储中检索特征属性的值或复杂特征属性的部分值
GetFeatureWithLock 返回选择的功能并对这些功能应用锁定
CreateStoredQuery 在 WFS 服务器上创建存储查询
DropStoredQuery 从 WFS 服务器中删除存储的查询
ListStoredQueries 返回 WFS 服务器上存储的查询列表
DescribeStoredQueries 返回描述 WFS 服务器上存储的查询的元数据文档

以下操作仅在1.1.0 版本中可用

GetCapabilities

GetCapabilities操作是向 WFS 服务器请求该服务器支持的操作和服务或功能列表的请求,请求参数如下,根据规范,所有参数在技术上都是必需的,但如果请求中省略了任何参数,GeoServer 将提供默认值

参数名 是否必需 描述
service 是的 服务名称 - 值为WFS
version 是的 服务版本 - 值为当前版本号。必须提供完整的版本号(“1.1.0”、“1.0.0”),而不是缩写形式(“1”或“1.1”)。
request 是的 操作名称—值为GetCapabilities

GetCapabilities 返回的是一个冗长的 XML 文档,每个支持的版本的格式都不同。GetCapabilities 文档中有五个主要部分

ServiceIdentification 包含请求的基本标头信息,例如Title和ServiceType。指示支持的ServiceTypeWFS 版本。
ServiceProvider 提供有关发布 WFS 服务的公司的联系信息,包括电话、网站和电子邮件。
OperationsMetadata 描述 WFS 服务器支持的操作以及每个操作的参数。WFS 服务器可以配置为不响应上面列出的操作。
FeatureTypeList 列出 WFS 服务器发布的要素类型。功能类型在表格中列出namespace:featuretype。还列出了要素类型的默认投影,以及所述投影中数据的边界框。
Filter_Capabilities 列出可用于形成查询谓词的过滤器或表达式,例如SpatialOperators(例如Equals, Touches)和ComparisonOperators(例如LessThan, GreaterThan)。过滤器本身不包含在 GetCapabilities 文档中。

请求样例

http://example.com/geoserver/wfs?
  service=wfs&
  version=1.1.0&
  request=GetCapabilities

DescribeFeatureType

在请求实际数据之前, DescribeFeatureType会请求有关单个要素类型的信息。具体来说,该操作将请求给定特征类型的特征和属性列表,或列出可用的特征类型。
DescribeFeatureType 的参数为:

参数名 是否必须 描述
service 服务名称 - 值为WFS
version 服务版本 - 值为当前版本号
request 操作名称—值为DescribeFeatureType
typeNames 要描述的要素类型的名称(typeName对于 WFS 1.1.0 和更早版本)
exceptions 报告异常的格式——默认值为application/vnd.ogc.se_xml
outputFormat 定义用于描述特征类型的方案描述语言

返回特征类型列表

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=DescribeFeatureType

要列出有关名为 的特定功能类型的信息namespace:featuretype

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=DescribeFeatureType&
  typeNames=namespace:featuretype

GetFeature

GetFeature操作返回数据源中的特征选择。
此请求将为给定层执行 GetFeature 请求namespace:featuretype

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype

执行此命令将返回给定特征类型中所有特征的几何图形,可能是大量数据。要限制输出,您可以通过包含附加参数featureID并提供特定功能的 ID 来将 GetFeature 请求限制为单个功能。在这种情况下,GET 请求将是:

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  featureID=feature

如果特征 ID 未知,但您仍想限制返回的特征数量,请使用countWFS 2.0.0 的maxFeatures参数或早期 WFS 版本的参数。在下面的示例中,N表示要返回的特征数:

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  count=N
http://example.com/geoserver/wfs?
  service=wfs&
  version=1.1.0&
  request=GetFeature&
  typeName=namespace:featuretype&
  maxFeatures=N

具体返回哪 N 个特征取决于数据的内部结构。但是,您可以根据属性值对返回的选择进行排序。在下面的示例中,使用sortBy=attribute参数在请求中包含一个属性(替换attribute为您希望排序的属性):

http://example.com/geoserver/wfs?
   service=wfs&
   version=2.0.0&
   request=GetFeature&
   typeNames=namespace:featuretype&
   count=N&
   sortBy=attribute

默认排序操作是按升序排序。一些 WFS 服务器需要指定排序顺序,即使需要升序排序也是如此。在这种情况下,将 a 附加+A到请求中。反之,+D在请求中添加 a 以降序排序,如下所示

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  count=N&
  sortBy=attribute+D

没有义务在 GetFeature 请求中使用sortBywith count,但它们可以一起使用以更有效地管理返回的特征选择。
要通过属性而不是功能来限制 GetFeature 请求,请使用propertyName表单中的键propertyName=attribute。您可以指定单个属性,也可以指定多个用逗号分隔的属性。要在所有要素中搜索单个属性,需要以下请求:

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  propertyName=attribute

对于仅来自一个功能的单个属性,请同时使用featureID和propertyName:

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  featureID=feature&
  propertyName=attribute

对于单个功能的多个属性,请使用逗号分隔的值列表propertyName:

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  featureID=feature&
  propertyName=attribute1,attribute2

虽然 GetFeature 请求的上述排列侧重于非空间参数,但也可以根据几何查询特征。虽然空间查询的 GET 请求中可用的选项有限(使用过滤器的 POST 请求中可用的选项更多),但支持按边界框 (BBOX) 进行过滤。
BBOX 参数允许您搜索包含(或部分包含)在用户定义坐标框中的要素。BBOX 参数的格式为bbox=a1,b1,a2,b2,[crs], a1, b1,a2和b2表示坐标值。可选crs参数用于为 bbox 坐标命名 CRS(如果它们与 featureTypes 原生 CRS 不同)。传递给 BBOX 参数的坐标顺序取决于使用的坐标系(这就是为什么不使用坐标语法的原因用x或表示y。)
要为返回的要素指定坐标系,请附加srsName=CRS到 WFS 请求,其中CRS是您希望使用的坐标参考系。
至于指定边界框的哪些角,唯一的要求是首先提供底角(左或右)。例如,左下角和右上角,或右下角和左上角。
基于边界框返回特征的示例请求(使用 featureTypes 原生 CRS):

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  srsName=CRS&
  bbox=a1,b1,a2,b2

要使用具有不同于 featureTypes 原生 CRS 的 CRS 的边界框来请求特征:

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetFeature&
  typeNames=namespace:featuretype&
  srsName=CRS&
  bbox=a1,b1,a2,b2,CRS

LockFeature

LockFeature操作提供了一种长期的特征锁定机制,以确保编辑事务的一致性。如果一个客户端获取一个特性并在将其提交回 WFS 之前进行了一些更改,锁会阻止其他客户端对同一特性进行任何更改,从而确保可以序列化的事务。如果 WFS 服务器支持此操作,则会在服务器的 GetCapabilities 响应中报告。
实际上,很少有客户端支持这种操作。

Transaction

Transaction操作可以创建、修改和删除 WFS 发布的要素。每个事务将包含零个或多个插入、更新和删除元素,每个事务元素按顺序执行。每个 GeoServer 事务都是_原子_的,这意味着如果任何元素失败,事务就会被放弃,数据不会改变。支持事务的 WFS 服务器有时称为 WFS-T 服务器。GeoServer 完全支持事务。
有关事务语法的更多信息,请参见WFS 规范GeoServer 示例请求

GetGMLObject(此操作仅对WFS 版本 1.1.0有效)

GetGMLObject操作接受 GML 对象(要素或几何)的标识符并返回该对象此操作仅在需要复杂特征的情况下才相关,允许客户端仅提取复杂特征的一部分嵌套属性。因此,客户端应用程序并未广泛使用此操作。

GetPropertyValue(此操作仅对WFS 版本 2.0.0有效)

GetPropertyValue操作从数据源中检索由查询标识的给定特征集的特征属性值或复杂特征属性值的一部分。
此示例仅检索topp:states图层中要素的地理内容:

http://example.com/geoserver/wfs?
  service=wfs&
  version=2.0.0&
  request=GetPropertyValue&
  typeNames=topp:states&
  valueReference=the_geom

要检索不同属性的值,请更改valueReference参数。

GetFeatureWithLock(此操作仅对WFS 版本 2.0.0有效)

GetFeatureWithLock操作类似于GetFeature操作,不同之处在于当从 WFS 服务器返回特征集时,特征也被锁定,为后续事务操作准备。
此 POST 示例检索topp:states图层的特征,但另外将这些特征锁定五分钟

<wfs:GetFeatureWithLock service='WFS' version='2.0.0'
                        handle='GetFeatureWithLock-tc1' expiry='5' resultType='results'
                        xmlns:topp='http://www.openplans.org/topp'
                        xmlns:fes='http://www.opengis.net/fes/2.0'
                        xmlns:wfs='http://www.opengis.net/wfs/2.0'
                        valueReference='the_geom'>
  <wfs:Query typeNames='topp:states'/>
</wfs:GetFeatureWithLock>

要调整锁定时间,请更改expiry参数。

CreateStoredQuery(此操作仅对WFS 版本 2.0.0有效)

CreateStoredQuery操作在WFS 服务器上创建存储查询。存储查询的定义被编码在StoredQueryDefinition参数中,并被赋予一个 ID 以供参考。
此 POST 示例创建一个新的存储查询(称为“myStoredQuery”),将图层过滤到给定感兴趣区域 ( )topp:states内的那些特征:${AreaOfInterest}

<wfs:CreateStoredQuery service='WFS' version='2.0.0'
 xmlns:wfs='http://www.opengis.net/wfs/2.0'
 xmlns:fes='http://www.opengis.org/fes/2.0'
 xmlns:gml='http://www.opengis.net/gml/3.2'
 xmlns:myns='http://www.someserver.com/myns'
 xmlns:topp='http://www.openplans.org/topp'>
  <wfs:StoredQueryDefinition id='myStoredQuery'>
    <wfs:Parameter name='AreaOfInterest' type='gml:Polygon'/>
    <wfs:QueryExpressionText
     returnFeatureTypes='topp:states'
     language='urn:ogc:def:queryLanguage:OGC-WFS::WFS_QueryExpression'
     isPrivate='false'>
      <wfs:Query typeNames='topp:states'>
        <fes:Filter>
          <fes:Within>
            <fes:ValueReference>the_geom</fes:ValueReference>
             ${AreaOfInterest}
          </fes:Within>
        </fes:Filter>
      </wfs:Query>
    </wfs:QueryExpressionText>
  </wfs:StoredQueryDefinition>
</wfs:CreateStoredQuery>

DropStoredQuery(此操作仅对WFS 版本 2.0.0有效)

DropStoredQuery操作删除以前由 CreateStoredQuery 操作创建的存储查询。该请求接受要删除的查询的 ID。
此示例将删除 ID 为 的存储查询myStoredQuery:

http://example.com/geoserver/wfs?
  request=DropStoredQuery&
  storedQuery_Id=myStoredQuery

ListStoredQueries(此操作仅对WFS 版本 2.0.0有效)

ListStoredQueries操作返回当前由 WFS 服务器维护的存储查询的列表。
此示例列出了服务器上所有存储的查询:

http://example.com/geoserver/wfs?
  request=ListStoredQueries&
  service=wfs&
  version=2.0.0

DescribeStoredQuery(此操作仅对WFS 版本 2.0.0有效)

DescribeStoredQuery操作返回有关 WFS 服务器维护的每个存储查询的详细元数据。可以通过提供特定查询的 ID 来请求对单个查询的描述。如果未提供 ID,则描述所有查询。
此示例描述了 ID 为 的现有存储查询urn:ogc:def:query:OGC-WFS::GetFeatureById:

http://example.com/geoserver/wfs?
  request=DescribeStoredQueries&
  storedQuery_Id=urn:ogc:def:query:OGC-WFS::GetFeatureById

WFS-G

WFS-G是WFS的扩展。
地名词典 ( WFS-G ) 由开放地理空间联盟 ( OGC ) 定义为特定的 WFS 服务,其中空间信息的定位由文本请求(基于地理名称)确定
该标准定义了三个动作:

  1. GetCapabilities,它返回正式的描述或元数据服务以确定可用的选项。它由两个主要元素组成:FeatureTypeList 和 FilterCapabilities。
  2. GetFeature它根据空间查询返回先前输入到服务器的地理实体或要素。它还依赖于其他合适的过滤器,WFS 使用这些过滤器来取回包含整个几何图形和相关属性的搜索结果。此操作的主要元素是类似于 GetFeatureById 操作的 StoredQuery。
  3. DescribeFeatureType它返回一个 XML 图,描述 WFS 服务的数据类型,并指出查询或事务中对象的请求代码。

参考资料

https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%89%8B%E6%9C%BA%E7%89%88-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847.html?from=subscribe
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90app%E4%B8%8B%E8%BD%BD-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90app%E4%B8%8B%E8%BD%BD-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847.html
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%89%8B%E6%9C%BA%E7%89%88-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html?spss=today-news-hotrank
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847.html?spss=today-news-hotrank
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847.html
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847.html?spss=today-news-hotrank
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847.html?from=subscribe
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BA%E7%89%88-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%BD-19869481847.html?from=subscribe
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BA%E7%89%88-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847.html?from=subscribe
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%BD-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847.html
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847.html?from=subscribe
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BA%E7%89%88-19869481847.html
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%BD-19869481847
www.yingfeichina.com/?post_type=product&s=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%BD-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847.html?from=subscribe
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847.html
https://c.m.163.com/news/a/%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BA%E7%89%88-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847.html
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847.html
https://www.fanmichina.com/?s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BA%E7%89%88-19869481847.html
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BA%E7%89%88-19869481847.html
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847.html
www.yingfeichina.com/?post_type=product&s=%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%BD-19869481847
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html
https://c.m.163.com/news/a/%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%BD-19869481847.html
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E7%94%B5%E8%AF%9D-19869481847.html
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E5%BE%AE%E4%BF%A1-19869481847.html
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847.html?spss=today-news-hotrank
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%B4%9F%E8%B4%A3%E4%BA%BA%E7%94%B5%E8%AF%9D-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F-19869481847.html
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7-19869481847.html?from=subscribe
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E7%AB%99-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BAapp%E4%B8%8B%E8%BD%BD%E9%93%BE%E6%8E%A5-19869481847.html
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%98%E7%BD%91-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E7%94%B5%E8%AF%9D-19869481847.html?spss=today-news-hotrank
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847.html
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E5%BE%AE%E4%BF%A1-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E9%A1%B5%E7%89%88-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847.html?from=subscribe
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E5%9D%80%E5%A4%9A%E5%B0%91-19869481847
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E5%AE%98%E7%BD%91-19869481847
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%BD%91%E6%8A%95%E8%B4%A6%E5%8F%B7%E5%BC%80%E6%88%B7-19869481847
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E7%94%B5%E8%AF%9D-19869481847
www.yingfeichina.com/?post_type=product&s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%BD-19869481847
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%94%B5%E8%84%91%E7%BD%91%E5%9D%80-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E7%99%BB%E9%99%86%E7%BD%91%E5%9D%80-19869481847.html?spss=today-news-hotrank
https://www.fanmichina.com/?s=%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8%E6%89%8B%E6%9C%BA%E7%89%88-19869481847
https://c.m.163.com/news/a/%E8%85%BE%E9%BE%99%E5%A8%B1%E4%B9%90%E5%85%AC%E5%8F%B8app%E4%B8%8B%E8%BD%

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值