<?xml version="1.0" encoding="UTF-8"?>
<!-- 声明XML版本和编码格式，固定开头 -->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
    <!-- 
    urlset：根标签，必须包含默认命名空间（sitemap核心标准）；
    额外引入image/video命名空间，支持后续添加图片/视频信息（可选，需页面含对应内容时才用）
    -->
    <!-- 1. 网站首页（通常优先级最高） -->
    <url>
        <loc>https://ifmcs.com</loc> <!-- 页面绝对URL，必须包含http/https，无锚点（#） -->
        <lastmod>2024-05-20T15:30:00+08:00</lastmod> <!-- 页面最后更新时间，格式：YYYY-MM-DDThh:mm:ss+时区（+08:00为北京时间） -->
        <changefreq>daily</changefreq> <!-- 页面更新频率，可选值：always（实时）、hourly（每小时）、daily（每天）、weekly（每周）、monthly（每月）、yearly（每年）、never（永不更新） -->
        <priority>1.0</priority> <!-- 页面优先级（0.0-1.0），仅给搜索引擎参考，不决定排名；首页建议1.0，核心栏目0.8-0.9，普通内容0.5-0.7 -->
    </url>

    <!-- 2. 产品列表 -->
    <url>
        <loc>https://ifmcs.com/product</loc>
        <lastmod>2024-05-19T10:15:00+08:00</lastmod>
        <changefreq>weekly</changefreq> <!-- 栏目页更新频率低于首页，按内容更新节奏调整 -->
        <priority>0.9</priority> <!-- 优先级低于首页，高于普通文章页 -->
    </url>

    <!-- 3. 产品详情页（含图片，需添加图片信息帮助图片收录） -->
    <url>
        <loc>https://ifmcs.com/product-detail</loc>
        <lastmod>2024-05-20T09:45:00+08:00</lastmod>
        <changefreq>monthly</changefreq> <!-- 文章发布后较少更新，设为monthly/yearly -->
        <priority>0.9</priority> <!-- 普通内容优先级，根据内容价值调整 -->
        <!-- 图片信息：若页面含图片，添加image标签可提升图片在搜索引擎图片搜索的收录率 -->
        <image:image>
            <image:loc>https://api.ifmcs.com:8816/file/upload/getFileByPath?filePath=/upload/img/1736133971270_Frame%201010109074.png</image:loc> <!-- 图片绝对URL -->
            <image:caption>采集各类能耗监测点</image:caption> <!-- 图片描述，帮助搜索引擎理解图片内容 -->
            <image:title>能源管理</image:title> <!-- 图片标题 -->
        </image:image>
    </url>
    <!-- 4. 静态页面（如“关于我们”，几乎不更新） -->
    <url>
        <loc>http://www.ifmcs.com/about</loc>
        <lastmod>2024-01-15T14:00:00+08:00</lastmod> <!-- 仅首次创建/重大修改时更新时间 -->
        <changefreq>yearly</changefreq> <!-- 静态页面更新极少，设为yearly/never -->
        <priority>0.8</priority> <!-- 辅助页面，优先级低于核心内容 -->
    </url>
    <!-- 5. 生态合作 -->
    <url>
        <loc>http://www.ifmcs.com/teamwork</loc>
        <lastmod>2024-01-15T14:00:00+08:00</lastmod> <!-- 仅首次创建/重大修改时更新时间 -->
        <changefreq>yearly</changefreq> <!-- 静态页面更新极少，设为yearly/never -->
        <priority>0.6</priority> <!-- 辅助页面，优先级低于核心内容 -->
    </url>
    <!-- 6. 成功案例 -->
    <url>
        <loc>https://ifmcs.com/case</loc>
        <lastmod>2024-05-18T16:20:00+08:00</lastmod>
        <changefreq>monthly</changefreq> <!-- 产品页仅更新价格/库存时，频率可设为monthly -->
        <priority>0.5</priority> <!-- 产品页为转化核心，优先级高于普通文章 -->
        <!-- 视频信息：若页面含产品介绍视频，添加video标签可助力视频搜索收录 -->
        <image:image>
            <image:loc>https://api.ifmcs.com:8816/file/upload/getFileByPath?filePath=/upload/img/1730948862692_能源15.png</image:loc> <!-- 图片绝对URL -->
            <image:caption>综合能源的采集管理系统，建立数据管控渠道</image:caption> <!-- 图片描述，帮助搜索引擎理解图片内容 -->
            <image:title>惠州西文思技术股份有限公司</image:title> <!-- 图片标题 -->
        </image:image>
        <!-- <video:video> -->
            <!-- <video:loc>https://www.yourdomain.com/videos/wireless-headphones-review.mp4</video:loc> 视频文件URL（需可直接访问） -->
            <!-- <video:title>无线耳机产品功能演示</video:title> 视频标题 -->
            <!-- <video:description>2024新款无线耳机降噪、续航、音质实测演示</video:description> 视频描述 -->
            <!-- <video:thumbnail_loc>https://www.yourdomain.com/images/headphones-video-cover.jpg</video:thumbnail_loc> 视频封面图URL -->
            <!-- <video:duration>320</video:duration> 视频时长（秒），需准确 -->
        <!-- </video:video>  -->
    </url>

    
</urlset>