Files
wiki/张德海_简历.html
T
zdh f8d378ecf2
Deploy Wiki to Production / deploy (push) Has been cancelled
添加张德海个人简历页面
2026-06-04 23:40:04 +08:00

705 lines
26 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>张德海 — 个人简历</title>
<style>
:root {
--primary: #1a3c5e;
--primary-light: #2c6088;
--accent: #2980b9;
--bg: #f5f7fa;
--card-bg: #ffffff;
--text: #2c3e50;
--text-light: #5a6c7d;
--border: #e2e8f0;
--tag-bg: #e8f0fe;
--tag-text: #1a5c9e;
--star-color: #e6a817;
--shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
--shadow-hover: 0 4px 12px rgba(0,0,0,0.08);
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
font-family: "WenQuanYi Micro Hei", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.8;
font-size: 15px;
}
/* ===== Header ===== */
.header {
background: linear-gradient(135deg, #1a3c5e 0%, #1f4d7a 40%, #1a5276 100%);
color: #fff;
padding: 40px 0 32px;
text-align: center;
}
.header h1 {
font-size: 36px;
font-weight: 700;
letter-spacing: 4px;
margin-bottom: 6px;
}
.header .subtitle {
font-size: 15px;
opacity: 0.85;
letter-spacing: 2px;
}
.header .quick-info {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 28px;
margin-top: 18px;
font-size: 14px;
opacity: 0.9;
}
.header .quick-info span { white-space: nowrap; }
/* ===== Container ===== */
.container {
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
}
/* ===== Section Card ===== */
.section {
background: var(--card-bg);
border-radius: 10px;
box-shadow: var(--shadow);
margin: 24px 0;
padding: 28px 32px;
transition: box-shadow 0.2s;
}
.section:hover { box-shadow: var(--shadow-hover); }
.section h2 {
font-size: 20px;
color: var(--primary);
border-left: 4px solid var(--accent);
padding-left: 12px;
margin-bottom: 18px;
font-weight: 700;
}
.section h3 {
font-size: 16px;
color: var(--primary-light);
margin: 16px 0 6px;
font-weight: 700;
}
.section h4 {
font-size: 14.5px;
color: #34495e;
margin: 10px 0 4px;
font-weight: 700;
}
/* ===== Summary Blockquote ===== */
.summary blockquote {
background: linear-gradient(135deg, #f0f6fc 0%, #eaf2f8 100%);
border-left: 4px solid var(--accent);
padding: 16px 20px;
border-radius: 0 8px 8px 0;
margin-bottom: 16px;
font-size: 15px;
color: #2c3e50;
line-height: 1.9;
}
.summary blockquote strong { color: var(--primary); }
/* ===== Tags / Competencies ===== */
.tag-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 12px;
}
.tag {
background: var(--tag-bg);
color: var(--tag-text);
padding: 5px 14px;
border-radius: 20px;
font-size: 13.5px;
font-weight: 500;
white-space: nowrap;
}
/* ===== Skill Table ===== */
.skill-table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.skill-table thead th {
background: var(--primary);
color: #fff;
padding: 10px 14px;
text-align: left;
font-weight: 600;
}
.skill-table thead th:first-child { border-radius: 6px 0 0 0; }
.skill-table thead th:last-child { border-radius: 0 6px 0 0; }
.skill-table td {
padding: 9px 14px;
border-bottom: 1px solid var(--border);
}
.skill-table tr:last-child td:first-child { border-radius: 0 0 0 6px; }
.skill-table tr:last-child td:last-child { border-radius: 0 0 6px 0; }
.skill-table tr:nth-child(even) td { background: #fafbfc; }
.skill-table .stars {
color: var(--star-color);
letter-spacing: 2px;
white-space: nowrap;
}
.skill-table .field-name {
font-weight: 600;
color: var(--primary);
white-space: nowrap;
min-width: 90px;
}
/* ===== Timeline / Work Experience ===== */
.timeline-item {
position: relative;
padding: 16px 0 16px 24px;
border-left: 2px solid var(--border);
margin-left: 8px;
}
.timeline-item::before {
content: '';
position: absolute;
left: -6px;
top: 22px;
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--accent);
}
.timeline-item:last-child { border-left-color: transparent; }
.timeline-item .job-header {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: baseline;
margin-bottom: 4px;
}
.timeline-item .company {
font-size: 16px;
font-weight: 700;
color: var(--primary);
}
.timeline-item .role {
font-size: 14px;
color: var(--primary-light);
font-weight: 600;
}
.timeline-item .period {
font-size: 13px;
color: var(--text-light);
}
.timeline-item ul {
margin: 6px 0 0 18px;
color: var(--text);
}
.timeline-item li { margin-bottom: 3px; font-size: 14px; }
.timeline-item .sub-label {
font-weight: 600;
color: var(--primary-light);
margin-top: 8px;
margin-bottom: 2px;
font-size: 14px;
}
/* ===== Project Grid ===== */
.project-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-top: 8px;
}
.project-card {
background: #fafbfc;
border: 1px solid var(--border);
border-radius: 8px;
padding: 16px 18px;
transition: box-shadow 0.2s;
}
.project-card:hover { box-shadow: var(--shadow-hover); }
.project-card h3 {
margin: 0 0 8px;
font-size: 15px;
color: var(--primary);
}
.project-card ul {
margin: 0 0 0 16px;
font-size: 13.5px;
color: var(--text);
}
.project-card li { margin-bottom: 2px; }
.project-card.full-width { grid-column: 1 / -1; }
/* ===== Self Evaluation ===== */
.eval-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.eval-item {
background: #fafbfc;
border-radius: 8px;
padding: 14px 16px;
border: 1px solid var(--border);
font-size: 14px;
}
.eval-item strong { color: var(--primary); }
/* ===== Footer Note ===== */
.footer-note {
background: #fffbe6;
border: 1px solid #f0e6c0;
border-radius: 8px;
padding: 14px 20px;
font-size: 13.5px;
color: #8a7440;
margin: 24px 0 40px;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
.section { padding: 18px 16px; margin: 14px 0; }
.header h1 { font-size: 26px; }
.project-grid { grid-template-columns: 1fr; }
.eval-grid { grid-template-columns: 1fr; }
.timeline-item .job-header { flex-direction: column; }
.container { padding: 0 10px; }
}
/* ===== Print ===== */
@media print {
body { background: #fff; font-size: 12px; }
.header { background: var(--primary) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; padding: 20px 0 16px; }
.section { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; margin: 10px 0; padding: 14px 18px; }
.container { max-width: 100%; padding: 0; }
.project-grid { grid-template-columns: 1fr; gap: 10px; }
.eval-grid { grid-template-columns: 1fr; gap: 6px; }
.footer-note { display: none; }
}
</style>
</head>
<body>
<!-- ===== HEADER ===== -->
<div class="header">
<h1>张德海</h1>
<div class="subtitle">Java 全栈工程师 · 技术管理者 · AI 应用实践者</div>
<div class="quick-info">
<span>📍 沈阳</span>
<span>📅 20年经验</span>
<span>🎓 沈阳工业大学 本科</span>
<span>📞 13840243721</span>
</div>
</div>
<div class="container">
<!-- ===== 专业概述 ===== -->
<div class="section summary">
<h2>专业概述</h2>
<blockquote>
20年Java技术栈全栈开发老兵,从JSP/Servlet时代到微服务/云原生,亲历并主导了Web开发技术的多次迭代。具备<strong>10+年技术团队管理经验</strong>,擅长技术架构选型、团队搭建与绩效管理。累计服务<strong>50+客户</strong>,覆盖电商、物联网、医疗、政务、工业制造等多个垂直行业。近年深耕<strong>AI/大模型应用落地</strong>,在智能体(Agent)、Skills编排、知识库(RAG)等方向有完整的项目实践经验。
</blockquote>
<div class="tag-list">
<span class="tag">技术广度:全栈 + 视频协议 + AI落地</span>
<span class="tag">AI落地能力:Agent · Skills · RAG</span>
<span class="tag">AI CodingClaude Code / Copilot / Cursor</span>
<span class="tag">行业深耕:医疗 · 供热 · 电商供应链</span>
<span class="tag">管理成熟:10年+全流程管控</span>
<span class="tag">驻场实战:三甲医院 · 部队医院 · 供热企业</span>
</div>
</div>
<!-- ===== 技术能力 ===== -->
<div class="section">
<h2>技术能力</h2>
<table class="skill-table">
<thead>
<tr><th style="width:16%">技术领域</th><th style="width:62%">具体技术</th><th style="width:22%">熟练度</th></tr>
</thead>
<tbody>
<tr>
<td class="field-name">后端框架</td>
<td>Spring Boot / Spring Cloud / MyBatis / Hibernate / JSP+Servlet</td>
<td class="stars">⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">前端技术</td>
<td>Vue.js / React / 微信小程序 / Uni-App / HTML5</td>
<td class="stars">⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">数据库</td>
<td>MySQL / PostgreSQL / Oracle / Redis / MongoDB</td>
<td class="stars">⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">视频协议</td>
<td>GB/T 28181 / ONVIF / RTSP / 海康ISUP / 大华SDK</td>
<td class="stars">⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">AI / 大模型</td>
<td>LLM应用(ChatGPT/Claude/DeepSeek/通义千问)/ Agent智能体 / Skills编排 / RAG知识库 / Function Calling / Prompt Engineering / LangChain</td>
<td class="stars">⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">AI Coding</td>
<td>Claude Code / GitHub Copilot / Cursor / Windsurf / Aider / AI代码审查与重构 / 自动化测试生成</td>
<td class="stars">⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">AI视觉</td>
<td>视频智能识别 / 目标检测(YOLO系列)/ 自定义模型训练与部署</td>
<td class="stars">⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">物联网</td>
<td>MQTT / Modbus RTU&TCP / 时序数据库(InfluxDB/TDengine/ 规则引擎 / OTA固件升级 / 边缘计算</td>
<td class="stars">⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">DevOps</td>
<td>Docker / Jenkins / Git / Linux运维</td>
<td class="stars">⭐⭐⭐⭐</td>
</tr>
<tr>
<td class="field-name">项目管理</td>
<td>敏捷开发 / 需求分析 / 技术方案编写 / 团队绩效评估</td>
<td class="stars">⭐⭐⭐⭐⭐</td>
</tr>
</tbody>
</table>
</div>
<!-- ===== 工作经历 ===== -->
<div class="section">
<h2>工作经历</h2>
<div class="timeline-item">
<div class="job-header">
<span class="company">沈阳跃迁大数据有限公司</span>
<span class="role">技术部经理</span>
<span class="period">2023.06 — 至今 · 沈阳</span>
</div>
<ul>
<li>全面负责技术部日常开发管理工作,管理 X人 研发团队;主导技术路线规划与技术架构选型、搭建</li>
</ul>
<div class="sub-label">▎物联网方向</div>
<ul>
<li>主导<strong>物联网综合管理平台</strong>整体架构设计与开发,支持MQTT、Modbus、HTTP多协议设备接入</li>
<li>搭建设备管理与监控中心:设备注册、状态监控、OTA远程升级、故障诊断与告警</li>
<li>设计时序数据存储方案(InfluxDB/TDengine + Redis + MySQL),支撑万级设备并发上报</li>
<li>构建数据可视化大屏:设备GIS分布、实时仪表盘、历史趋势、异常告警推送</li>
<li>实现规则引擎:自定义阈值告警、联动控制策略;多租户权限体系</li>
<li>覆盖场景:工业设备监控、农业物联网、能源能耗管理</li>
</ul>
<div class="sub-label">▎AI方向</div>
<ul>
<li>搭建企业级<strong>AI Agent智能体平台</strong>,实现业务自动化与智能决策</li>
<li>设计并落地<strong>Skills编排系统</strong>,将核心业务能力封装为可插拔Skill模块</li>
<li>搭建基于RAG架构的<strong>企业知识库平台</strong>,覆盖制度问答、产品咨询、合同审查等场景</li>
<li>完成多个AI项目从0到1交付:模型选型 → Prompt工程 → Agent架构 → 效果评测</li>
<li>推动AI Coding工具在团队中的落地应用,建立AI辅助开发最佳实践</li>
</ul>
<div class="sub-label">▎政务项目</div>
<ul>
<li>主导某省政务服务<strong>"好差评"系统</strong>开发与长期运维,覆盖省/市/县/乡镇四级政务大厅</li>
<li>承接<strong>省总工会数字化服务平台</strong>:会员管理、活动发布、在线投票、法律援助等</li>
<li>主导<strong>某市民政局AI智能客服</strong>:基于大模型+RAG实现民政业务智能咨询问答</li>
<li>负责政务项目信创适配与等保合规工作</li>
</ul>
</div>
<div class="timeline-item">
<div class="job-header">
<span class="company">沈阳易住网络科技有限公司</span>
<span class="role">网络工程师(技术管理岗)</span>
<span class="period">2017.07 — 2023.05 · 沈阳</span>
</div>
<ul>
<li><strong>业务调研</strong>:深入客户现场进行需求挖掘与业务流程梳理,输出解决方案</li>
<li><strong>方案设计</strong>:独立及协作完成技术解决方案编写,参与售前技术支持</li>
<li><strong>团队管理</strong>:负责任务分配、进度跟踪、技术攻关协调,直接向技术副总汇报</li>
<li><strong>薪酬评估</strong>:参与团队成员的绩效评估与薪酬调整建议</li>
<li>工作覆盖电商、医疗、视频融合、小程序等多个业务线</li>
</ul>
</div>
<div class="timeline-item">
<div class="job-header">
<span class="company">沈阳普峰国际旅行社</span>
<span class="role">技术部经理</span>
<span class="period">2016.05 — 2017.06 · 沈阳</span>
</div>
<ul>
<li>负责技术团队管理,主导旅游电商平台新产品设计开发</li>
</ul>
</div>
<div class="timeline-item">
<div class="job-header">
<span class="company">大连海心信息工程有限公司</span>
<span class="role">软件工程师 → 项目经理</span>
<span class="period">2012.05 — 2016.05 · 大连</span>
</div>
<ul>
<li>前半年负责供热行业遗留系统维护与客户现场需求确认、数据调整</li>
<li>后3.5年担任项目经理,全面负责项目管理、实施交付、需求调研、开发进度跟踪</li>
<li>深入理解供热行业全貌,覆盖<strong>经营管理、生产调度、安全管理</strong>等核心模块</li>
</ul>
</div>
<div class="timeline-item">
<div class="job-header">
<span class="company">大连英极软件</span>
<span class="role">软件工程师</span>
<span class="period">2007.12 — 2012.05 · 大连</span>
</div>
<ul>
<li><strong>保证金交易系统</strong>:参与金融交易类系统开发</li>
<li><strong>个人信贷系统</strong>:负责运维保障与功能迭代</li>
<li><strong>Java Web项目</strong>:承担多个企业级Web项目开发</li>
</ul>
</div>
<div class="timeline-item">
<div class="job-header">
<span class="company">泰华卓信科技发展有限公司</span>
<span class="role">软件工程师</span>
<span class="period">2007.01 — 2007.11</span>
</div>
<ul><li>从事Java Web开发,正式入行企业级开发</li></ul>
</div>
<div class="timeline-item">
<div class="job-header">
<span class="company">沈阳工业大学网络管理中心</span>
<span class="role">软件工程师(实习)</span>
<span class="period">在校期间 · 沈阳</span>
</div>
<ul>
<li><strong>本校OA系统</strong>15人团队协作开发校园办公自动化系统</li>
<li><strong>战场炮火抢修系统</strong>(沈阳某军区):3人团队,2个月完成交付</li>
<li><strong>毕业生资格审查系统</strong>(辽宁省教育厅):负责自动资格审查及统计分析模块</li>
<li><strong>科技评审系统</strong>(辽宁省科技协会):独立完成系统分析、界面设计、代码实现</li>
<li style="color:#888;font-size:13px;">以上项目均采用 JSP + JavaBean + Servlet 经典技术架构</li>
</ul>
</div>
</div>
<!-- ===== 行业项目经验 ===== -->
<div class="section">
<h2>行业项目经验</h2>
<div class="project-grid">
<div class="project-card">
<h3>🛒 电商类系统</h3>
<ul>
<li>单商户B2C商城系统</li>
<li>多商户B2B2C平台</li>
<li>供应链管理系统</li>
<li>进销存与仓库管理系统</li>
<li>服务数十个客户</li>
</ul>
</div>
<div class="project-card">
<h3>📱 移动端应用</h3>
<ul>
<li>「到家」小程序(家政、维修等)</li>
<li>「预约」小程序(场馆、服务等)</li>
<li>微信生态开发(公众号、支付、推送)</li>
<li>Uni-App跨端开发</li>
</ul>
</div>
<div class="project-card">
<h3>🏥 医疗领域</h3>
<ul>
<li>HIS系统(医院信息系统)</li>
<li>DRGs管控系统(医保控费)</li>
<li>预约挂号小程序</li>
<li>院内导航系统</li>
<li>驻场:中小型医院 · 三甲医院 · 部队医院</li>
</ul>
</div>
<div class="project-card">
<h3>🏭 办公类系统</h3>
<ul>
<li>药品销售行业办公管理</li>
<li>铸沙模型生产行业ERP</li>
<li>钢铁生产办公自动化</li>
<li>多行业定制开发经验</li>
</ul>
</div>
<div class="project-card">
<h3>🔥 供热行业(4年)</h3>
<ul>
<li>供热企业经营管理系统</li>
<li>供热生产调度系统</li>
<li>供热安全管理平台</li>
<li>深入理解供热行业全貌</li>
</ul>
</div>
<div class="project-card">
<h3>📹 视频融合平台</h3>
<ul>
<li>国标GB/T 28181协议对接</li>
<li>ONVIF / RTSP流媒体协议</li>
<li>海康ISUP / 大华SDK</li>
<li>视频智能识别 + 自定义模型训练</li>
</ul>
</div>
</div>
<!-- IoT & Gov full-width cards -->
<div class="project-grid" style="margin-top:20px;">
<div class="project-card full-width">
<h3>🌾 物联网综合管理平台</h3>
<ul>
<li><strong>设备接入</strong>MQTT、Modbus RTU/TCP、HTTP/WebHook,适配主流PLC、传感器、网关</li>
<li><strong>数据存储</strong>InfluxDB/TDengine + Redis + MySQL,支撑万级设备并发上报</li>
<li><strong>设备管理</strong>:注册鉴权、在线监控、OTA固件升级、故障诊断与日志追溯</li>
<li><strong>规则引擎</strong>:可视化阈值告警与联动策略(温度超限→告警→自动启动降温设备)</li>
<li><strong>可视化大屏</strong>ECharts/G2 — GIS分布、仪表盘、趋势曲线、告警滚动播报</li>
<li><strong>多租户 + 边缘计算</strong>:SaaS数据隔离 + 边缘预处理 + 断网续传</li>
</ul>
</div>
<div class="project-card full-width">
<h3>🏛️ 政务类系统</h3>
<ul>
<li><strong>某省"好差评"系统</strong>:四级政务大厅覆盖,多渠道评价接入(窗口/终端/扫码/短信),实时汇聚与可视化,差评整改闭环,信创适配+等保测评</li>
<li><strong>省总工会数字化平台</strong>:会员管理、活动发布、在线投票、法律援助、普惠商城,微信双端覆盖</li>
<li><strong>某市民政局AI智能客服</strong>:大模型+RAG架构,民政业务知识库(婚姻/低保/养老/残疾/殡葬),Function Calling办事查询,人工无缝接管</li>
</ul>
</div>
</div>
</div>
<!-- ===== AI/大模型应用落地 ===== -->
<div class="section">
<h2>🤖 AI / 大模型应用落地(核心方向)</h2>
<div class="project-grid">
<div class="project-card">
<h3>智能体(Agent)平台</h3>
<ul>
<li>自主决策Agent,多步推理与自动执行</li>
<li>多Agent协作:任务分发、结果汇总、冲突仲裁</li>
<li>Function Calling / Tool Use打通外部系统</li>
<li>上下文管理与会话记忆</li>
<li>安全护栏(Guardrails)设计</li>
</ul>
</div>
<div class="project-card">
<h3>Skills 编排系统</h3>
<ul>
<li>可插拔Skills框架,热加载与动态调用</li>
<li>LLM自动路由与编排</li>
<li>覆盖:数据查询、报表、推送、审批流、视频分析</li>
<li>支持行业定制Skill(医疗DRGs、供热能耗预测等)</li>
</ul>
</div>
<div class="project-card">
<h3>知识库(RAG)系统</h3>
<ul>
<li>向量数据库(Milvus / Chroma / FAISS</li>
<li>文档Pipeline:解析→分块→向量化→索引</li>
<li>混合检索:语义 + 关键词 + 元数据过滤</li>
<li>增量更新与版本管理</li>
<li>场景:制度问答、客服、辅助诊断、合同审查</li>
</ul>
</div>
<div class="project-card">
<h3>AI CodingAI辅助开发)</h3>
<ul>
<li>精通 Claude Code / Copilot / Cursor / Windsurf / Aider</li>
<li>AI驱动的代码审查与Bug自动修复</li>
<li>自动化测试生成(单元测试/集成测试)</li>
<li>主流方案差异分析与团队选型推荐</li>
<li>自主编程Agent方向关注与实践</li>
</ul>
</div>
</div>
<div style="margin-top:16px; padding:14px 18px; background:#f0f6fc; border-radius:8px; font-size:14px;">
<strong style="color:#1a3c5e;">项目实践总结:</strong>
独立完成从模型选型 → 架构设计 → 工程落地 → 效果评测的AI项目全流程 · 熟悉OpenAI / Anthropic / 国内模型厂商API适配切换 · 掌握Prompt EngineeringFew-shot / CoT / 结构化输出)· Token消耗优化与模型分级调用 · 关注MCP协议、Agent通信协议等前沿方向
</div>
</div>
<!-- ===== 教育背景 ===== -->
<div class="section">
<h2>教育背景</h2>
<table class="skill-table">
<thead><tr><th>学校</th><th>学历</th><th>专业</th></tr></thead>
<tbody>
<tr><td>沈阳工业大学</td><td>本科</td><td>(计算机相关专业)</td></tr>
</tbody>
</table>
</div>
<!-- ===== 自我评价 ===== -->
<div class="section">
<h2>自我评价</h2>
<div class="eval-grid">
<div class="eval-item">
<strong>经验丰富</strong><br>
20年Java开发生涯,亲历Web技术从Servlet到微服务的完整演进,能快速判断技术方案的可行性与风险。
</div>
<div class="eval-item">
<strong>AI落地实践者</strong><br>
从0到1交付AI项目——Agent、Skills编排、RAG知识库均有落地案例。精通主流大模型API集成、Prompt Engineering、模型成本控制。精通Claude Code、Copilot、Cursor等AI Coding工具。
</div>
<div class="eval-item">
<strong>管理成熟</strong><br>
10年+技术团队管理经验,擅长目标拆解、任务分配、技术攻关与人员培养。
</div>
<div class="eval-item">
<strong>行业适应力强</strong><br>
横跨电商、医疗、供热、物联网、视频安防、AI等多个行业,快速理解陌生业务。
</div>
<div class="eval-item">
<strong>务实落地</strong><br>
多次驻场锤炼的解决实际问题能力,以交付结果为导向,不纸上谈兵。
</div>
<div class="eval-item">
<strong>持续学习</strong><br>
主动跟进AI前沿(Agent架构、MCP协议、RAG优化、AI Coding工具链),保持技术敏感度。
</div>
<div class="eval-item">
<strong>沟通协作</strong><br>
长期担任向上汇报与向下管理的桥梁角色,有效对接技术与非技术团队。
</div>
</div>
</div>
<div class="footer-note">
📝 标「X人」处请补充实际管理团队人数;教育背景中的专业名称请确认后补充。投递时可针对不同岗位方向微调侧重点。
</div>
</div>
</body>
</html>