<?xml version="1.0" encoding="utf-8"?>
<!-- XML文件需以utf-8编码-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<!--必填标签-->
    <url>
        <!--必填标签,这是具体某一个链接的定义入口，每一条数据都要用<url>和</url>包含在里面，这是必须的 -->
        <loc>https://pickmall.cn</loc>
        <!--必填,URL链接地址,长度不得超过256字节-->
        <lastmod>2023-03-24</lastmod>
        <!--可以不提交该标签,用来指定该链接的最后更新时间-->
        <changefreq>weekly</changefreq>
        <!--可以不提交该标签,用这个标签告诉此链接可能会出现的更新频率 -->
        <priority>1.0</priority>
        <!--可以不提交该标签,用来指定此链接相对于其他链接的优先权比值，此值定于0.0-1.0之间-->
    </url>
    <url>
        <loc>https://pickmall.cn/quote.html</loc>
        <lastmod>2023-03-24</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
    <url>
        <loc>https://pickmall.cn/about.html</loc>
        <lastmod>2023-03-24</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
    <url>
        <loc>https://pickmall.cn/product.html</loc>
        <lastmod>2023-03-24</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
    <url>
        <loc>https://pickmall.cn/s2b2c.html</loc>
        <lastmod>2023-03-24</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
    <url>
        <loc>https://pickmall.cn/micro.html</loc>
        <lastmod>2023-03-24</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.5</priority>
    </url>
    <url>
        <loc>https://pickmall.cn/index.html</loc>
        <lastmod>2023-03-24</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
</urlset>
