CINXE.COM

Procore 默认成本编号有哪些? - Procore

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Procore 默认成本编号有哪些? - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=347514643d37bf95a0cf76b3ce0ed34c_emgtc2cuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13854" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=6699f74b132e2bfa09fffa4d76f79739:site_13854" id="mt-print-css" /> <script type="text/javascript" nonce="a22892877eb85f3547c1d4084e61238a6d21fb774119596809c535322d361b92" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=9529aea554fde890c4d7cb109f8680ca3b4d1cd2:site_13854"></script><script type="application/json" id="mt-global-settings" nonce="a22892877eb85f3547c1d4084e61238a6d21fb774119596809c535322d361b92">{"apiToken":"xhr_2_1739834021_d708bb08691259c12205e4dc0776ac4d5e8d06f575abbb87521681729427b263","pageId":3459,"pageViewId":"dd47f9f4-f451-4ad6-815f-5db95c8671c1"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js"></script> <!-- Back to Top Button by Tie Dec 14 2023 --> <script defer>/*<![CDATA[*/ window.onscroll = function () { scrollFunction(); }; function scrollFunction() { if (!document.querySelector(".columbia-article-topic-category")) { const backToTopButton = document.querySelector("#back-to-top-button"); const pageText = document.querySelector(".mt-content-container"); if (pageText.getBoundingClientRect().top < -20) { backToTopButton.style.display = "block"; } else { backToTopButton.style.display = "none"; } } } function scrollToTop() { const pageText = document.querySelector(".mt-content-container"); pageText.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest", }); } /*]]>*/</script> <!-- Global Responsive Book Functions Added by Tie Jun 14 2023 --> <script>/*<![CDATA[*/ function displaySection(id){ $(".content-section").hide(); $(id).show(); var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($(window).scrollTop() > $(".content-sop").offset().top) { $([document.documentElement, document.body]).animate({ scrollTop: $(id).offset().top - 84 }, 100); } $('.toc-sop a').removeClass('selected-chapter'); str1=".toc-sop a[onclick*=\\'\\"; str3="\\']"; fin_str=str1.concat(id,str3); $(fin_str).addClass('selected-chapter'); $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); const newURL = new URL(window.location.href); newURL.hash = id; history.pushState({},'',newURL); return false; } function toggleToc(){ var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($menuButton.attr("aria-expanded") === "false") { $menuButton.attr("aria-expanded","true"); $content.attr("data-mobile-visible","false"); $toc.attr("data-mobile-visible","true"); } else { $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); } } /*]]>*/</script> <!-- Put Page ID on Page Settings Added by Tie Apr 14, 2022 --> <script>/*<![CDATA[*/ document.addEventListener("DOMContentLoaded", function (e) { if (document.querySelector("#mt-summary")) { var pageId = document.querySelector("#mt-summary").dataset.pageId; var text = document.createElement("p"); var box = document.querySelector(".mt-collapsible-section"); text.innerText = `Page ID: ${pageId}`; box.appendChild(text); var line = document.querySelector(".elm-meta-data.elm-meta-top"); if (document.querySelector("#mt-summary")) { line.style.display = "block"; box.appendChild(line); } } }); /*]]>*/</script> <!-- Define Deprecated Video Hiding Function Sitewide Added by Tie Marc 30, 2022 --> <script>/*<![CDATA[*/ function hideDeprecatedVideos() { let thisurl = window.location.href; if (thisurl.includes('Media_Library') || thisurl.includes('/tc') || thisurl.includes('/tutorials')) { $('.deprecated-video').show(); }; } $(function () { if ($('.deprecated-video').length) { hideDeprecatedVideos(); } }) /*]]>*/</script> <!-- Define Sorting functions sitewide Added by Tie Marc 11, 2022 --> <script>/*<![CDATA[*/ const language = 'zh-cn' //Change this two lines during localization const noAlphabetArray = ['zh-cn']; const compareFun = (a, b) => { return new Intl.Collator(language).compare(a.title, b.title); } let sortTerms = (elementType, section, skipFirst) => { let terms = [...section.querySelectorAll(elementType)] let firstElement = section.firstElementChild; let termHeaders = terms.map(e => e.innerText) let termObject = [] termHeaders.forEach((title, index) => { termObject.push({ title }); termObject[index].header = terms[index]; }); termObject.sort(compareFun); section.innerHTML = ''; if (skipFirst) { section.append(firstElement); } termObject.forEach((element) => { section.append(element.header); }); } const sortItems = (definitionSelector, sortItemSelector, skipFirst = false) => { let definitionsSections = [...document.querySelectorAll(definitionSelector)]; definitionsSections.forEach(section => sortTerms(sortItemSelector, section, skipFirst)); } /*]]>*/</script> <!-- Hide content from other regions Added by Tie Marc 7, 2022 --> <script>/*<![CDATA[*/ function getSubdomain() { let host = window.location.host; let subdomain = host.split(".")[0]; return subdomain; } function getLocaleBySubdomain(subdomain) { if (subdomain == "de") { return "de-de"; } if (subdomain == "es") { return "es-419"; } if (subdomain == "fr") { return "fr-fr"; } if (subdomain == "support") { return "en-us"; } return subdomain; } function getAllLocales() { var listedLocales = $(".localization-group") .map(function () { return $(this).data("locale"); }) .get(); return listedLocales; } function hideOtherLocales() { const subdomain = getSubdomain(); const locale = getLocaleBySubdomain(subdomain); let styleElement = document.createElement("style"); styleElement.setAttribute("type", "text/css"); styleElement.innerText = `.localization-group:not([data-locale*='${locale}']) {\ndisplay: none;\n}\n`; styleElement.innerText += '.localization-group[data-locale="else"] {\ndisplay: unset;\n}'; styleElement.innerText += `.localization-group[data-locale*="${locale}"] ~ .localization-group[data-locale="else"] {\ndisplay: none;\n}`; document.head.appendChild(styleElement); } $(function () { hideOtherLocales(); }) /*]]>*/</script> <!-- Collapsible Content. Added by Tie Apr 21, 2020 --> <script>/*<![CDATA[*/ $(window).on('load', function(e){ $('.collapsible').find('.trigger').on('click',function(){ $(this).closest('.collapsible').find('.col_content').slideToggle('350'); if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-down'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-down')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-right'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-down'); } else { $(this).find('.arrowclass').removeClass('fas fa-chevron-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-right'); } }); }); function colex(el) { $(el).closest(".collapsible").find(".col_content").slideToggle("350"); if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-down"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-down")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-right"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-down"); } else { $(el).find(".arrowclass").removeClass("fas fa-chevron-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-right"); } } /*]]>*/</script> <!-- Start Custom Print Style --> <!-- User ID Tracking. Added by Dean Feb 21, 2018 --> <script>/*<![CDATA[*/document.addEventListener("DOMContentLoaded", function() { var json = JSON.parse(document.getElementById('mt-global-settings').textContent) if (!json['userIsAnonymous']) { var dataLayer = window.dataLayer || {}; dataLayer.push({ 'event': 'setUserId', 'userId': json['userId'] }); window.Procore = window.Procore || {}; window.Procore.metrics = window.Procore.metrics || {}; window.Procore.metrics.user = window.Procore.metrics.user || {}; window.Procore.metrics.user.mtid = json['userId']; } }); /*]]>*/</script> <!-- End User ID Tracking --> <!-- Adobe Launch: Added 9/10/2019 by Joshua Bradley --> <script src="//assets.adobedtm.com/launch-EN162b61ce5645478888c92738b130b2f3.min.js" async="async"></script> <!-- End Adobe Launch--> <!-- Google Tag Manager --> <script>/*<![CDATA[*/(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWZQ5W6');/*]]>*/</script> <!-- End Google Tag Manager --> <!-- Start Typography --> <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6912732/682666/css/fonts.css"> <link rel="stylesheet" type="text/css" href="https://mkt-cdn.procore.com/fonts/sctogrotesk/sctogrotesk.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&amp;display=swap" rel="stylesheet" as="style"> <!-- End Typography --> <!-- Start of FontAwesome --> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <!-- End of FontAwesome --> <!-- Start Service Cloud Header for Ticket Form --> <!-- End Service Cloud Header for Ticket Form --> <!-- OneTrust Cookies Consent Notice start for procore.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="cbdfc14e-1f05-4d37-82a6-11d3228b4df5"></script> <script type="text/javascript">/*<![CDATA[*/ function OptanonWrapper() { } /*]]>*/</script> <!-- OneTrust Cookies Consent Notice end for procore.com --> </head> <body class="columbia-page-main columbia-article-faq columbia-breadcrumb-home-faq-what-are-procores-default-cost-codes columbia-live no-touch columbia-lang-zh-cn columbia-skin-grape"> <div class="grape-messaging"> </div> <div class="grape-header-custom"> <div class="mt-custom-header-div"><div class="mt-custom-header-container"><div class="mt-custom-header-logo"><a target="_self" href="https://zh-sg.support.procore.com/" rel="internal"><img src="https://zh-sg.support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3D9529aea554fde890c4d7cb109f8680ca3b4d1cd2:site_13854" /><span id="support-logo">&#25903;&#25345;</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com/en-sg?journey=supporttoprocore" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="dropdown dropdown-hover"><a href="#" class="dropdown-toggle mt-icon-earth mt-icon-arrow-down7" role="button"> &#26032;&#21152;&#22369;&#65288;&#31616;&#20307;&#20013;&#25991;&#65289;</a><ul class="dropdown-menu" id="lang-dd" style="display: none;"><li><a target="_self" href="https://es.support.procore.com/" rel="external nofollow" class="link-https">Am&eacute;rica Latina (Espa&ntilde;ol)</a></li><li><a target="_self" href="https://en-au.support.procore.com/" rel="external nofollow" class="link-https">Australia (English)</a></li><li><a target="_self" href="https://pt-br.support.procore.com/" rel="external nofollow" class="link-https">Brasil (Portugu&ecirc;s)</a></li><li><a target="_self" href="https://en-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (English)</a></li><li><a target="_self" href="https://fr-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (Fran&ccedil;ais)</a></li><li><a target="_self" href="https://de.support.procore.com/" rel="external nofollow" class="link-https">Deutschland (Deutsch)</a></li><li><a target="_self" href="https://es-es.support.procore.com/" rel="external nofollow" class="link-https">Espa&ntilde;a (Espa&ntilde;ol)</a></li><li><a target="_self" href="https://fr.support.procore.com/" rel="external nofollow" class="link-https">France (Fran&ccedil;ais)</a></li><li><a target="_self" href="https://en-gb.support.procore.com/" rel="external nofollow" class="link-https">United Kingdom (English)</a></li><li><a target="_self" href="https://support.procore.com/" rel="external nofollow" class="link-https">United States (English)</a></li><li><a target="_self" class="internal" href="https://zh-sg.support.procore.com/" rel="internal">&#26032;&#21152;&#22369;&#65288;&#31616;&#20307;&#20013;&#25991;&#65289;</a></li><li><a target="_self" href="https://ja-jp.support.procore.com/" rel="external nofollow" class="link-https">&#26085;&#26412;&#65288;&#26085;&#26412;&#35486;&#65289;</a></li></ul></li><li class="mt-custom-header-listitem"><a target="_blank" href="https://zh-sg.support.procore.com/references/contact-support" rel="internal">&#32852;&#31995;&#20154;</a></li><li class="mt-custom-header-listitem-login"><a target="_blank" href="https://app.procore.com?journey=supporttologin" rel="external noopener nofollow" class="link-https">&#30331;&#24405; Procore &#24212;&#29992;</a></li></ul></div></div><div class="mt-prepend-home mt-custom-home elm-nav" id="header-search"><div class="elm-nav-container"><script type="application/json" id="mt-localizations-help-widget">/*<![CDATA[*/{"Help.Widget.button.text":"\u641c\u7d22","Help.Widget.label.text":"\u67e5\u8be2","Help.Widget.placeholder.text":"\u6211\u4eec\u80fd\u4e3a\u4f60\u63d0\u4f9b\u54ea\u4e9b\u5e2e\u52a9\uff1f"}/*]]>*/</script><div class="mt-inputredirect" data-query-key="q" data-path=""></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(document).ready(function(){ $('.mt-custom-header-right .dropdown').hover(function(){ $(this).children('.dropdown-menu').toggle(); }) });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ /* Adds Training Center Help action to Pro Member Nav. Dean Jan 11, 2018 */ $(document).ready(function(){ $('.elm-header-user-nav.elm-nav .elm-nav-container>ol').prepend('<li><a class="mt-icon-editor-training-link" style="display:inline" target="_blank" href="/tc/1-Author_Training_Center_Documentation">Training Center Help</a></li>'); });/*]]>*/</script> </div> <div class="grape-header grape-wrapper"> <div class="grape-header-container grape-wrapper-container"> <div class="grape-site-logo"> <a class="logo-anonymous" href="/" title="Procore"> <img class="mt-cdn" src="https://a.mtstatic.com/@public/production/site_13854/1681518206-logo.png" alt="Procore" title="Procore"> </a> </div> <div class="grape-site-navigation"> <ul class="mt-site-nav"> <li class="mt-login-sign-in"> <a class="mt-icon-quick-sign-in" href="https://zh-sg.support.procore.com/Special:AuthenticationProviders?returntotitle=faq%2Fwhat-are-procores-default-cost-codes" title="登录"> 登录 </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://zh-sg.support.procore.com/Special:UserPassword" title="找回丢失的密码"> 忘记密码 </a> </li> </ul> </div> <div class="grape-site-search"> <div class="mt-quick-search-container"> <form action="/Special:Search"> <input name="path" id="mt-search-path" type="hidden" value="" /> <label class="mt-label" for="mt-site-search-input"> 搜索 </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="我们可如何帮助您?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> 搜索 </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://zh-sg.support.procore.com/"> <span class="mt-icon-article-category mt-icon-article-home"></span> Home </a> </li> <li> <a href="https://zh-sg.support.procore.com/faq"> <span class="mt-icon-article-guide"></span> 常见问题 </a> </li> </ul> </div> </div> <div class="grape-content grape-wrapper"> <div class="grape-content-container grape-wrapper-container"> <div id="flash-messages"><div class="dekiFlash"></div></div> <h1 id="title" class="no-edit" style="visibility: visible;"> Procore 默认成本编号有哪些? </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2025-02-17T21:16:58Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="目录" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">目录</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#.E8.83.8C.E6.99.AF" rel="internal">&#32972;&#26223;</a></li><li><a href="#.E7.AD.94.E6.A1.88" rel="internal">&#31572;&#26696;</a><ol><li><ol><li><a href="#.E6.B3.A8.E6.84.8F" rel="internal">&nbsp;&#27880;&#24847;</a></li></ol></li><li><a href="#.E9.BB.98.E8.AE.A4.E6.88.90.E6.9C.AC.E7.BC.96.E5.8F.B7.E7.BB.86.E5.88.86.E9.A1.B9" rel="internal">&#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#32454;&#20998;&#39033;</a><ol><li><a href="#.E6.8F.90.E7.A4.BA" rel="internal">&nbsp;&#25552;&#31034;</a></li></ol></li></ol></li><li><a href="#.E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85" rel="internal">&#21478;&#35831;&#21442;&#38405;</a></li><li><a href="#" rel="internal">&nbsp;</a></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_1"><span id=".E8.83.8C.E6.99.AF"></span><h2 class="editable">&#32972;&#26223;</h2> <p>&#22312; Procore &#20013;&#65292;<em>&#25104;&#26412;&#32534;&#21495;</em>&#23450;&#20041;&#20102;&#24314;&#35774;&#24037;&#31243;&#39033;&#30446;&#20013;&#24453;&#23436;&#25104;&#24037;&#31243;&#30340;&#20855;&#20307;&#31867;&#22411;&#12290;&#23427;&#20063;&#26159; Procore <a class="F1" title="&#35789;&#27719;&#34920;" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#Budget_Code" rel="internal">&#39044;&#31639;&#32534;&#21495;</a>&#20013;&#30340;&#40664;&#35748;&#32454;&#20998;&#20043;&#19968; (1)&#12290;&#35201;&#20102;&#35299;&#26356;&#22810;&#20449;&#24687;&#65292;&#35831;&#21442;&#38405; <a title="Procore &#30340; WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;" href="https://zh-sg.support.procore.com/faq/what-is-a-budget-code-in-procores-wbs" rel="internal">Procore WBS &#20013;&#30340;&#39044;&#31639;&#32534;&#21495;&#26159;&#20160;&#20040;&#65311;</a></p> </div><div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_2"><span id=".E7.AD.94.E6.A1.88"></span><h2 class="editable">&#31572;&#26696;</h2> <p>&#20316;&#20026;&#36149;&#20844;&#21496; Procore &#36134;&#25143;&#30340; <a class="F1" title="Procore &#31649;&#29702;&#21592;" href="https://zh-sg.support.procore.com/procore-learning-paths/general-contractor/procore-administrator" rel="internal">Procore &#31649;&#29702;&#21592;</a>&#65292;&#31532;&#19968;&#27493;&#26159;&#20026;&#36149;&#20844;&#21496;&#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500; (WBS) &#23450;&#20041;&#25104;&#26412;&#32534;&#21495;&#21644;&#25104;&#26412;&#31867;&#22411;&#21015;&#34920;&#12290;</p> <p>&#36873;&#25321;&#20197;&#19979;&#36873;&#39033;&#20043;&#19968;&#65306;</p> <ul> <li><strong>&#22312; Procore &#30340;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;&#20013;&#20351;&#29992;&#25104;&#26412;&#32534;&#21495;&#32454;&#20998;&#39033;</strong><br />&#22312; Procore &#20013;&#65292;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#37096;&#20998;&#40664;&#35748;&#21487;&#29992;&#65292;&#24182;&#19982;<a class="F1" title="&#35789;&#27719;&#34920;" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#Construction_Specifications_Institute" rel="internal">&#32654;&#22269;&#26045;&#24037;&#35268;&#33539;&#21327;&#20250; (CSI)</a> &#30340; <a class="F1" title="&#35789;&#27719;&#34920;" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms#MasterFormat" rel="internal">MasterFormat</a> &#20445;&#25345;&#19968;&#33268;&#12290;&#35831;&#21442;&#38405;&#19979;&#38754;&#30340;<a title="Procore &#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#26377;&#21738;&#20123;&#65311;" class="mt-self-link" href="#Default_Cost_Code_List" rel="internal">&#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#21015;&#34920;</a>&#12290;&#35201;&#20102;&#35299;&#26377;&#20851;&#32454;&#20998;&#39033;&#30340;&#26356;&#22810;&#20449;&#24687;&#65292;&#35831;&#21442;&#38405;&#65306; <ul> <li><a title="&#21019;&#24314;&#20844;&#21496;&#30340;&#40664;&#35748;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/create-your-companys-default-work-breakdown-structure" rel="internal">&#21019;&#24314;&#20844;&#21496;&#30340;&#40664;&#35748;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;</a></li> <li><a title="&#21019;&#24314;&#39033;&#30446;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/admin/tutorials/create-your-projects-work-breakdown-structure" rel="internal">&#21019;&#24314;&#39033;&#30446;&#24037;&#20316;&#20998;&#35299;&#32467;&#26500;</a></li> </ul> </li> <li><strong>&#20351;&#29992; Procore Imports &#24212;&#29992;&#31243;&#24207;&#23548;&#20837;&#25104;&#26412;&#32534;&#21495;&#32454;&#20998;&#39033;</strong><br />&#21487;&#20197;&#20351;&#29992; Procore Imports &#24212;&#29992;&#31243;&#24207;&#23558;&#32454;&#20998;&#39033;&#23548;&#20837;&#20844;&#21496;&#25110;&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;&#12290;&#26377;&#20851;&#35814;&#32454;&#20449;&#24687;&#65292;&#35831;&#21442;&#38405; <a title="Procore &#23548;&#20837;&#27169;&#26495;" href="https://zh-sg.support.procore.com/references/procore-import-templates" rel="internal">Procore Import &#27169;&#26495;</a>&#21644;&#20197;&#19979;&#38142;&#25509;&#65306; <ul> <li><a title="&#23558;&#32454;&#20998;&#39033;&#30446;&#23548;&#20837;&#20844;&#21496;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855; (Procore Imports)" href="https://zh-sg.support.procore.com/products/procore-imports/company-admin/tutorials/import-segment-items-into-your-company-level-admin-tool-procore-imports" rel="internal">&#23558;&#32454;&#20998;&#39033;&#23548;&#20837;&#20844;&#21496;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855; </a></li> <li><a title="&#23558;&#32454;&#20998;&#39033;&#23548;&#20837;&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855; (Procore Imports)" href="https://zh-sg.support.procore.com/products/procore-imports/project-admin/tutorials/import-segment-items-into-your-project-level-admin-tool-with-procore-imports" rel="internal">&#23558;&#32454;&#20998;&#39033;&#23548;&#20837;&#39033;&#30446;&#32423;&#21035;&#31649;&#29702;&#21592;&#24037;&#20855;</a></li> </ul> </li> </ul> <div class="callout callout-note"> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section"><span id=".E6.B3.A8.E6.84.8F"></span><h5 class="editable"><i class="fas fa-info-circle">&nbsp;</i>&#27880;&#24847;</h5> &#22914;&#26524;&#20844;&#21496;&#27491;&#22312;&#20351;&#29992;ERP&#38598;&#25104;&#24037;&#20855;&#25110; Procore <img alt="icon-external-link.png" height="14px" loading="lazy" width="14px" class="internal" src="https://zh-sg.support.procore.com/@api/deki/files/10774/icon-external-link.png?revision=1&amp;size=bestfit&amp;width=14&amp;height=14" /> <a data-track-click="Content, Link, Field Productivity" href="https://www.procore.com/field-productivity" rel="external noopener nofollow" target="_blank" title="https://www.procore.com/field-productivity">&#36164;&#28304;&#36319;&#36394;</a>&#24037;&#20855;&#65292;&#35831;&#21442;&#38405;<a title="&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;" href="https://zh-sg.support.procore.com/faq/why-cant-i-create-wbs-custom-segments" rel="internal">&#20026;&#20160;&#20040;&#25105;&#19981;&#33021;&#21019;&#24314; WBS &#33258;&#23450;&#20041;&#32454;&#20998;&#65311;</a></div></div> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_3"><span id=".E9.BB.98.E8.AE.A4.E6.88.90.E6.9C.AC.E7.BC.96.E5.8F.B7.E7.BB.86.E5.88.86.E9.A1.B9"></span><h3 class="editable">&#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#32454;&#20998;&#39033;</h3> <p>&#19979;&#34920;&#35814;&#32454;&#35828;&#26126;&#20102; Procore &#20013;&#22522;&#20110; 17 Division CSI MasterFormat &#30340;&#40664;&#35748;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#39033;&#12290;&#22312;&#19979;&#34920;&#20013;&#65292;&#28784;&#33394;&#32972;&#26223;&#30340;&#34892;&#34920;&#31034; MasterFormat &#30340;&#20998;&#37096;&#65292;&#30333;&#33394;&#32972;&#26223;&#30340;&#34892;&#34920;&#31034; MasterFormat &#27599;&#20010;&#20998;&#37096;&#20869;&#30340;&#21508;&#20010;&#25104;&#26412;&#32534;&#21495;&#32454;&#20998;&#39033;&#12290;</p> <div class="callout callout-tip"> <div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section"><span id=".E6.8F.90.E7.A4.BA"></span><h5 class="editable"><i class="fas fa-check-circle">&nbsp;</i>&#25552;&#31034;</h5> <p><strong>&#22312; Procore &#20013;&#65292;&#20026;&#20160;&#20040;&#27809;&#26377;&ldquo;&#20998;&#37096;&rdquo;&#30340;&#27010;&#24565;&#65311;</strong>&#22312; Procore &#30340; WBS &#20013;&#65292;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#26159;&#20998;&#23618;&#32454;&#20998;&#65292;&#24182;&#27809;&#26377;&ldquo;&#20998;&#37096;&rdquo;&#30340;&#27010;&#24565;&#12290;&#30456;&#21453;&#65292;&ldquo;&#20998;&#37096;&rdquo;&#34987;&#35270;&#20026;&#20998;&#23618;&#32454;&#20998;&#20013;&#30340;&#26576;&#19968;&#23618;&#32423;&#12290;&#32454;&#20998;&#20869;&#30340;&#23618;&#38656;&#22987;&#32456;&#29992;&#30701;&#21010;&#32447; (-) &#20998;&#38548;&#12290;Procore &#30340;&#40664;&#35748;&#25104;&#26412;&#32534;&#21495;&#21015;&#34920;&#26377;&#20004; (2) &#23618;&#12290;&#20294;&#26159;&#65292;&#20320;&#30340;&#29615;&#22659;&#21487;&#33021;&#26377;&#19968;&#23618;&#12289;&#20004;&#23618;&#25110;&#22810;&#23618;&#12290;&#35201;&#20102;&#35299;&#26356;&#22810;&#20449;&#24687;&#65292;&#35831;&#21442;&#38405; <a title="Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;" href="https://zh-sg.support.procore.com/faq/where-is-the-division-in-the-cost-code-segment-in-procores-wbs" rel="internal">Procore &#30340; WBS &#20013;&ldquo;&#25104;&#26412;&#32534;&#21495;&rdquo;&#32454;&#20998;&#20013;&#30340;&ldquo;&#20998;&#37096;&rdquo;&#22312;&#21738;&#37324;&#65311;</a></p> <p><strong>&#25105;&#33021;&#21542;&#33719;&#24471;&#19968;&#20221;&#40664;&#35748; &#25104;&#26412; &#32534;&#21495;&#21015;&#34920;&#30340;&#21103;&#26412;&#65311;</strong> &#35201;&#19979;&#36733;&#40664;&#35748; &#25104;&#26412; &#32534;&#21495;&#21517;&#31216;&#30340;&#21103;&#26412;&#20197;&#20379;&#21442;&#32771;&#65292;&#35831;&#28857;&#20987; Procore_&#40664;&#35748;<strong><a title="Procore_Default_Cost_Codes.csv" rel="internal" class="iconitext-16 ext-csv" href="https://zh-sg.support.procore.com/@api/deki/files/10551/Procore_Default_Cost_Codes.csv?revision=1">_Cost_Codes.csv</a></strong> &#12290;<br /> <em>&#27880;&#24847;:</em>&#27492;CSV&#25991;&#20214;&#20165;&#20379;&#21442;&#32771;&#65292;&#20854;&#26684;&#24335;&#26410;&#32463;&#26684;&#24335;&#21270;&#20197;&#23548;&#20837; Procore&#12290;</p> </div></div> <p>&nbsp;</p> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th class="text-align:center" style="width:189px;">&#25104;&#26412;&#32534;&#21495;&#23376;&#32534;&#21495;</th> <th class="text-align:center" style="width:845px;">&#25104;&#26412;&#32534;&#21495;&#25551;&#36848;</th> </tr> <tr> <th style="text-align:left;width:189px;">&#20998;&#37096; 01-</th> <th style="text-align:left;width:845px;">&#19968;&#33324;&#35201;&#27714;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:189px;">000</td> <td style="width:845px;text-align:left;">&#30446;&#30340;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">002</td> <td style="width:845px;text-align:left;">&#25351;&#31034;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">010</td> <td style="width:845px;text-align:left;">&#39033;&#30446;&#32463;&#29702;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">011</td> <td style="width:845px;text-align:left;">&#39033;&#30446;&#24037;&#31243;&#24072;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">012</td> <td style="width:845px;text-align:left;">&#30417;&#29702;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">013</td> <td style="width:845px;text-align:left;">&#39033;&#30446;&#21327;&#35843;&#21592;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">014</td> <td style="width:845px;text-align:left;">&#39033;&#30446;&#25191;&#34892;&#31649;&#29702;&#23618;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">500</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#35774;&#26045;&#19982;&#31649;&#21046;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">510</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#20844;&#20849;&#35774;&#26045;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">511</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#29992;&#30005;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">514</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#37319;&#26262;&#12289;&#31354;&#35843;&#21644;&#36890;&#39118;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">515</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#29031;&#26126;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">517</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#30005;&#35805;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">520</td> <td style="width:845px;text-align:left;">&#24314;&#31569;&#35774;&#26045;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">523</td> <td style="width:845px;text-align:left;">&#21355;&#29983;&#35774;&#26045;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">530</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#24314;&#31569;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">540</td> <td style="width:845px;text-align:left;">&#26045;&#24037;&#36741;&#21161;&#35774;&#26045;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">542</td> <td style="width:845px;text-align:left;">&#24314;&#31569;&#33050;&#25163;&#26550;&#21644;&#24179;&#21488;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">550</td> <td style="width:845px;text-align:left;">&#36710;&#36742;&#36890;&#36947;&#21644;&#20572;&#36710;&#22330;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">560</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#25252;&#26639;&#21644;&#22260;&#26639;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">570</td> <td style="width:845px;text-align:left;">&#20020;&#26102;&#31649;&#25511;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">580</td> <td style="width:845px;text-align:left;">&#39033;&#30446;&#36873;&#23450;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">600</td> <td style="width:845px;text-align:left;">&#20135;&#21697;&#35201;&#27714;&#65288;&#24037;&#20316;&#33539;&#22260;&#65289;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">630</td> <td style="width:845px;text-align:left;">&#20135;&#21697;&#20195;&#26367;&#31243;&#24207;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">640</td> <td style="width:845px;text-align:left;">&#30002;&#20379;&#20135;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">700</td> <td style="width:845px;text-align:left;">&#25191;&#34892;&#35201;&#27714;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">712</td> <td style="width:845px;text-align:left;">&#24403;&#22320;&#26465;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">740</td> <td style="width:845px;text-align:left;">&#28165;&#27905;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">760</td> <td style="width:845px;text-align:left;">&#20445;&#25252;&#24050;&#26377;&#24314;&#31569;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">903</td> <td style="width:845px;text-align:left;">&#26377;&#23475;&#29289;&#36136;&#20943;&#25490;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">904</td> <td style="width:845px;text-align:left;">&#26377;&#23475;&#29289;&#36136;&#28165;&#38500;&#21644;&#22788;&#32622;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:189px;">&#20998;&#37096; 02-</th> <th style="text-align:left;width:845px;">&#29616;&#22330;&#26045;&#24037;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:189px;">000</td> <td style="width:845px;text-align:left;">&#19968;&#33324;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">200</td> <td style="width:845px;text-align:left;">&#29616;&#22330;&#20934;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">220</td> <td style="width:845px;text-align:left;">&#29616;&#22330;&#25286;&#38500;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">230</td> <td style="width:845px;text-align:left;">&#29616;&#22330;&#28165;&#29702;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">240</td> <td style="width:845px;text-align:left;">&#25490;&#27700;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">250</td> <td style="width:845px;text-align:left;">&#25903;&#25745;&#21644;&#22522;&#30784;&#21152;&#22266;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">260</td> <td style="width:845px;text-align:left;">&#24320;&#25366;&#25903;&#25252;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">300</td> <td style="width:845px;text-align:left;">&#22303;&#26041;&#24037;&#31243;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">310</td> <td style="width:845px;text-align:left;">&#24179;&#25972;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">311</td> <td style="width:845px;text-align:left;">&#26368;&#21518;&#24179;&#25972;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">312</td> <td style="width:845px;text-align:left;">&#31895;&#30053;&#24179;&#25972;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">315</td> <td style="width:845px;text-align:left;">&#25366;&#25496;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">316</td> <td style="width:845px;text-align:left;">&#22238;&#22635;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">317</td> <td style="width:845px;text-align:left;">&#31934;&#36873;&#20511;&#22303;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">320</td> <td style="width:845px;text-align:left;">&#24320;&#25366;&#19982;&#20805;&#22635;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">362</td> <td style="width:845px;text-align:left;">&#30333;&#34433;&#38450;&#27835;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">370</td> <td style="width:845px;text-align:left;">&#20405;&#34432;&#21644;&#27785;&#31215;&#25511;&#21046;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">500</td> <td style="width:845px;text-align:left;">&#20844;&#29992;&#20107;&#19994;&#26381;&#21153;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">540</td> <td style="width:845px;text-align:left;">&#21270;&#31914;&#27744;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">621</td> <td style="width:845px;text-align:left;">&#22320;&#22522;&#25490;&#27700;&#31649;&#36947;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">625</td> <td style="width:845px;text-align:left;">&#25377;&#22303;&#22681;&#25490;&#27700;&#31649;&#36947;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">740</td> <td style="width:845px;text-align:left;">&#26580;&#24615;&#27813;&#38738;&#36335;&#38754;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">750</td> <td style="width:845px;text-align:left;">&#28151;&#20957;&#22303;&#22443;&#21644;&#20154;&#34892;&#36947;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">770</td> <td style="width:845px;text-align:left;">&#36335;&#32536;&#30707;&#21644;&#25490;&#27700;&#27807;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">780</td> <td style="width:845px;text-align:left;">&#31896;&#22303;&#21333;&#20803;&#25674;&#38138;&#26426;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">781</td> <td style="width:845px;text-align:left;">&#27813;&#38738;&#25674;&#38138;&#26426;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">782</td> <td style="width:845px;text-align:left;">&#30742;&#22359;&#25674;&#38138;&#26426;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">783</td> <td style="width:845px;text-align:left;">&#23884;&#38145;&#22411;&#28151;&#20957;&#22303;&#21333;&#20803;&#38138;&#30732;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">784</td> <td style="width:845px;text-align:left;">&#30707;&#26448;&#21333;&#20803;&#25674;&#38138;&#26426;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">790</td> <td style="width:845px;text-align:left;">&#36816;&#21160;&#22330;&#22320;&#34920;&#38754;&#20462;&#25972;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">795</td> <td style="width:845px;text-align:left;">&#22810;&#23380;&#38138;&#30732;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">800</td> <td style="width:845px;text-align:left;">&#29616;&#22330;&#35774;&#26045;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">812</td> <td style="width:845px;text-align:left;">&#28404;&#28748;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">813</td> <td style="width:845px;text-align:left;">&#33609;&#22378;&#21943;&#28748;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">815</td> <td style="width:845px;text-align:left;">&#21943;&#27849;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">820</td> <td style="width:845px;text-align:left;">&#22260;&#26639;&#21644;&#22823;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">821</td> <td style="width:845px;text-align:left;">&#32478;&#32455;&#32593;&#22260;&#26639;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">822</td> <td style="width:845px;text-align:left;">&#35013;&#39280;&#37329;&#23646;&#22260;&#26639;&#21644;&#22823;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">823</td> <td style="width:845px;text-align:left;">PVC &#22260;&#26639;&#21644;&#22823;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">824</td> <td style="width:845px;text-align:left;">&#38081;&#19997;&#22260;&#26639;&#21644;&#22823;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">825</td> <td style="width:845px;text-align:left;">&#26408;&#36136;&#22260;&#26639;&#21644;&#22823;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">830</td> <td style="width:845px;text-align:left;">&#25377;&#22303;&#22681;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">850</td> <td style="width:845px;text-align:left;">&#26725;&#26753;/&#20154;&#34892;&#22825;&#26725;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">870</td> <td style="width:845px;text-align:left;">&#38613;&#22609;/&#35013;&#39280;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">900</td> <td style="width:845px;text-align:left;">&#22253;&#26519;&#32511;&#21270;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">915</td> <td style="width:845px;text-align:left;">&#35206;&#30422;&#29289;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">917</td> <td style="width:845px;text-align:left;">&#25972;&#22320;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">919</td> <td style="width:845px;text-align:left;">&#34920;&#22303;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">923</td> <td style="width:845px;text-align:left;">&#25773;&#31181;&#21644;&#22303;&#22756;&#34917;&#20805;&#21058;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">924</td> <td style="width:845px;text-align:left;">&#38138;&#33609;&#30382;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">930</td> <td style="width:845px;text-align:left;">&#22806;&#22681;&#26893;&#29289;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">932</td> <td style="width:845px;text-align:left;">&#26893;&#29289;&#21644;&#28783;&#27873;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">935</td> <td style="width:845px;text-align:left;">&#24037;&#21378;&#32500;&#25252;</td> </tr> <tr> <td class="text-align:right" style="width:189px;">936</td> <td style="width:845px;text-align:left;">&#32933;&#26009;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:190px;">&#20998;&#37096; 03-</th> <th style="text-align:left;width:844px;">&#28151;&#20957;&#22303;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:190px;">000</td> <td style="width:844px;text-align:left;">&#19968;&#33324;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">050</td> <td style="width:844px;text-align:left;">&#28151;&#20957;&#22303;&#20998;&#21253;&#21830;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">100</td> <td style="width:844px;text-align:left;">&#28151;&#20957;&#22303;&#37197;&#31563;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">210</td> <td style="width:844px;text-align:left;">&#29616;&#27975;&#28151;&#20957;&#22303;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">230</td> <td style="width:844px;text-align:left;">&#22320;&#33050;&#34746;&#26643;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">300</td> <td style="width:844px;text-align:left;">&#22522;&#33050;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">310</td> <td style="width:844px;text-align:left;">&#20280;&#32553;&#32541;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">320</td> <td style="width:844px;text-align:left;">&#26495;&#22522;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">330</td> <td style="width:844px;text-align:left;">&#22320;&#19979;&#23460;&#28151;&#20957;&#22303;&#27975;&#31569;&#22681;&#20307;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">350</td> <td style="width:844px;text-align:left;">&#28151;&#20957;&#22303;&#25972;&#38754;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">400</td> <td style="width:844px;text-align:left;">&#39044;&#21046;&#28151;&#20957;&#22303;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">500</td> <td style="width:844px;text-align:left;">&#27700;&#27877;&#22522;&#38754;&#23618;&#21644;&#22443;&#23618;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">600</td> <td style="width:844px;text-align:left;">&#28748;&#27974;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:190px;">&#20998;&#37096; 04-</th> <th style="text-align:left;width:844px;">&#30732;&#20307;&#24037;&#31243;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:190px;">050</td> <td style="width:844px;text-align:left;">&#22522;&#26412;&#30732;&#31569;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">200</td> <td style="width:844px;text-align:left;">&#30732;&#20307;&#21333;&#20803;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">400</td> <td style="width:844px;text-align:left;">&#30707;&#26448;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">500</td> <td style="width:844px;text-align:left;">&#32784;&#28779;&#26448;&#26009;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">600</td> <td style="width:844px;text-align:left;">&#32784;&#33104;&#34432;&#30732;&#20307;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">700</td> <td style="width:844px;text-align:left;">&#27169;&#25311;&#30732;&#20307;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">800</td> <td style="width:844px;text-align:left;">&#30732;&#20307;&#32452;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:190px;">900</td> <td style="width:844px;text-align:left;">&#30732;&#20307;&#20462;&#22797;&#21644;&#28165;&#29702;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:192px;">&#20998;&#37096; 05-</th> <th style="text-align:left;width:842px;">&#37329;&#23646;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:192px;">050</td> <td style="width:842px;text-align:left;">&#22522;&#26412;&#37329;&#23646;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">100</td> <td style="width:842px;text-align:left;">&#32467;&#26500;&#37329;&#23646;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">200</td> <td style="width:842px;text-align:left;">&#37329;&#23646;&#25176;&#26753;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">300</td> <td style="width:842px;text-align:left;">&#37329;&#23646;&#38754;&#26495;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">400</td> <td style="width:842px;text-align:left;">&#20919;&#25104;&#22411;&#37329;&#23646;&#26694;&#26550;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">500</td> <td style="width:842px;text-align:left;">&#37329;&#23646;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">600</td> <td style="width:842px;text-align:left;">&#28082;&#21387;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">700</td> <td style="width:842px;text-align:left;">&#35013;&#39280;&#37329;&#23646;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">800</td> <td style="width:842px;text-align:left;">&#20405;&#34432;&#25511;&#21046;</td> </tr> <tr> <td class="text-align:right" style="width:192px;">900</td> <td style="width:842px;text-align:left;">&#37329;&#23646;&#20462;&#22797;&#21644;&#28165;&#27905;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:193px;">&#20998;&#37096; 06-</th> <th style="text-align:left;width:841px;">&#26408;&#26448;&#21644;&#22609;&#26009;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:193px;">050</td> <td style="width:841px;text-align:left;">&#22522;&#26412;&#26408;&#26448;&#22609;&#26009;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:193px;">100</td> <td style="width:841px;text-align:left;">&#31895;&#26408;&#24037;</td> </tr> <tr> <td class="text-align:right" style="width:193px;">200</td> <td style="width:841px;text-align:left;">&#31934;&#32454;&#26408;&#24037;</td> </tr> <tr> <td class="text-align:right" style="width:193px;">400</td> <td style="width:841px;text-align:left;">&#24314;&#31569;&#26408;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:193px;">500</td> <td style="width:841px;text-align:left;">&#32467;&#26500;&#22609;&#26009;</td> </tr> <tr> <td class="text-align:right" style="width:193px;">600</td> <td style="width:841px;text-align:left;">&#22609;&#26009;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:193px;">900</td> <td style="width:841px;text-align:left;">&#26408;&#26448;&#22609;&#26009;&#20462;&#22797;&#21644;&#28165;&#27905;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:194px;">&#20998;&#37096; 07-</th> <th style="text-align:left;width:840px;">&#20445;&#28201;&#38548;&#28287;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:194px;">050</td> <td style="width:840px;text-align:left;">&#22522;&#26412;&#20445;&#28201;&#38548;&#28287;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">100</td> <td style="width:840px;text-align:left;">&#38450;&#28526;&#38450;&#27700;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">200</td> <td style="width:840px;text-align:left;">&#28909;&#20445;&#25252; - &#20445;&#28201;&#23618;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">300</td> <td style="width:840px;text-align:left;">&#26408;&#29926;&#12289;&#23627;&#38754;&#29926;&#21644;&#23627;&#38754;&#35206;&#30422;&#23618;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">400</td> <td style="width:840px;text-align:left;">&#23627;&#38754;&#21644;&#22721;&#26495;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">500</td> <td style="width:840px;text-align:left;">&#34180;&#33180;&#23627;&#38754;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">600</td> <td style="width:840px;text-align:left;">&#38450;&#27700;&#26495;&#21644;&#37329;&#23646;&#26495;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">700</td> <td style="width:840px;text-align:left;">&#23627;&#39030;&#19987;&#29992;&#20214;&#21644;&#37197;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">800</td> <td style="width:840px;text-align:left;">&#38450;&#28779;&#38450;&#28895;</td> </tr> <tr> <td class="text-align:right" style="width:194px;">900</td> <td style="width:840px;text-align:left;">&#25509;&#32541;&#23494;&#23553;&#21058;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:198px;">&#20998;&#37096; 08-</th> <th style="text-align:left;width:836px;">&#38376;&#31383;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:198px;">050</td> <td style="width:836px;text-align:left;">&#22522;&#26412;&#38376;&#31383;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">100</td> <td style="width:836px;text-align:left;">&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">200</td> <td style="width:836px;text-align:left;">&#26408;&#38376;&#21644;&#22609;&#26009;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">300</td> <td style="width:836px;text-align:left;">&#29305;&#31181;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">400</td> <td style="width:836px;text-align:left;">&#20837;&#21475;&#21644;&#27249;&#31383;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">500</td> <td style="width:836px;text-align:left;">&#31383;&#25143;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">600</td> <td style="width:836px;text-align:left;">&#22825;&#31383;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">700</td> <td style="width:836px;text-align:left;">&#20116;&#37329;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">800</td> <td style="width:836px;text-align:left;">&#29627;&#29827;&#35013;&#37197;</td> </tr> <tr> <td class="text-align:right" style="width:198px;">900</td> <td style="width:836px;text-align:left;">&#29627;&#29827;&#24149;&#22681;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:196px;">&#20998;&#37096; 09-</th> <th style="text-align:left;width:838px;">&#39280;&#38754;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:196px;">050</td> <td style="width:838px;text-align:left;">&#22522;&#26412;&#39280;&#38754;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">100</td> <td style="width:838px;text-align:left;">&#37329;&#23646;&#25903;&#26550;&#32452;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">250</td> <td style="width:838px;text-align:left;">&#30707;&#33167;&#22681;&#26495;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">300</td> <td style="width:838px;text-align:left;">&#29943;&#30742;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">400</td> <td style="width:838px;text-align:left;">&#27700;&#30952;&#30707;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">500</td> <td style="width:838px;text-align:left;">&#21514;&#39030;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">600</td> <td style="width:838px;text-align:left;">&#27004;&#26495;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">680</td> <td style="width:838px;text-align:left;">&#22320;&#27631;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">700</td> <td style="width:838px;text-align:left;">&#22681;&#38754;&#39280;&#38754;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">800</td> <td style="width:838px;text-align:left;">&#22768;&#23398;&#22788;&#29702;</td> </tr> <tr> <td class="text-align:right" style="width:196px;">900</td> <td style="width:838px;text-align:left;">&#27833;&#28422;&#21644;&#28034;&#26009;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:201px;">&#20998;&#37096; 10-</th> <th style="text-align:left;width:833px;">&#29305;&#21046;&#21697;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:201px;">100</td> <td style="width:833px;text-align:left;">&#35270;&#35273;&#23637;&#31034;&#26495;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">150</td> <td style="width:833px;text-align:left;">&#38548;&#38388;&#21644;&#23567;&#23460;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">200</td> <td style="width:833px;text-align:left;">&#30334;&#21494;&#31383;&#21644;&#36890;&#39118;&#21475;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">240</td> <td style="width:833px;text-align:left;">&#26684;&#26629;&#21644;&#23631;&#24149;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">250</td> <td style="width:833px;text-align:left;">&#26381;&#21153;&#22681;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">260</td> <td style="width:833px;text-align:left;">&#25252;&#22681;&#21644;&#25252;&#35282;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">270</td> <td style="width:833px;text-align:left;">&#26550;&#31354;&#22320;&#26495;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">290</td> <td style="width:833px;text-align:left;">&#34411;&#23475;&#25511;&#21046;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">300</td> <td style="width:833px;text-align:left;">&#22721;&#28809;&#21644;&#28779;&#28809;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">340</td> <td style="width:833px;text-align:left;">&#21046;&#36896;&#30340;&#23460;&#22806;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">350</td> <td style="width:833px;text-align:left;">&#26071;&#26438;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">400</td> <td style="width:833px;text-align:left;">&#36523;&#20221;&#35782;&#21035;&#35013;&#32622;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">450</td> <td style="width:833px;text-align:left;">&#34892;&#20154;&#31649;&#21046;&#35013;&#32622;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">500</td> <td style="width:833px;text-align:left;">&#20648;&#29289;&#26588;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">520</td> <td style="width:833px;text-align:left;">&#28040;&#38450;&#22120;&#26448;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">530</td> <td style="width:833px;text-align:left;">&#38450;&#25252;&#32617;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">550</td> <td style="width:833px;text-align:left;">&#37038;&#25919;&#29305;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">600</td> <td style="width:833px;text-align:left;">&#38548;&#22681;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">670</td> <td style="width:833px;text-align:left;">&#20648;&#29289;&#26550;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">700</td> <td style="width:833px;text-align:left;">&#22806;&#37096;&#38450;&#25252;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">750</td> <td style="width:833px;text-align:left;">&#30005;&#35805;&#29305;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">800</td> <td style="width:833px;text-align:left;">&#21397;&#25152;&#12289;&#28020;&#23460;&#21644;&#27927;&#34915;&#38388;&#29305;&#21046;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">820</td> <td style="width:833px;text-align:left;">&#28020;&#23460;&#37197;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">880</td> <td style="width:833px;text-align:left;">&#26631;&#23610;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">900</td> <td style="width:833px;text-align:left;">&#22721;&#26588;&#34915;&#27249;&#29305;&#21046;&#21697;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:201px;">&#20998;&#37096; 11-</th> <th style="text-align:left;width:833px;">&#35774;&#22791;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:201px;">010</td> <td style="width:833px;text-align:left;">&#32500;&#25252;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">020</td> <td style="width:833px;text-align:left;">&#23433;&#20840;&#21644;&#20445;&#38505;&#24211;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">030</td> <td style="width:833px;text-align:left;">&#21462;&#27454;&#21450;&#26381;&#21153;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">040</td> <td style="width:833px;text-align:left;">&#23447;&#25945;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">050</td> <td style="width:833px;text-align:left;">&#22270;&#20070;&#39302;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">060</td> <td style="width:833px;text-align:left;">&#21095;&#38498;&#21644;&#33310;&#21488;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">070</td> <td style="width:833px;text-align:left;">&#20202;&#22120;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">080</td> <td style="width:833px;text-align:left;">&#30331;&#35760;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">090</td> <td style="width:833px;text-align:left;">&#34892;&#26446;&#23492;&#23384;&#22788;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">100</td> <td style="width:833px;text-align:left;">&#21830;&#21697;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">110</td> <td style="width:833px;text-align:left;">&#21830;&#19994;&#27927;&#34915;&#21450;&#24178;&#27927;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">120</td> <td style="width:833px;text-align:left;">&#33258;&#21160;&#21806;&#36135;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">130</td> <td style="width:833px;text-align:left;">&#35270;&#21548;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">140</td> <td style="width:833px;text-align:left;">&#27773;&#36710;&#26381;&#21153;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">150</td> <td style="width:833px;text-align:left;">&#20572;&#36710;&#25511;&#21046;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">160</td> <td style="width:833px;text-align:left;">&#35013;&#21368;&#30721;&#22836;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">170</td> <td style="width:833px;text-align:left;">&#22266;&#20307;&#24223;&#29289;&#22788;&#29702;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">190</td> <td style="width:833px;text-align:left;">&#25304;&#30041;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">200</td> <td style="width:833px;text-align:left;">&#32473;&#27700;&#21450;&#27700;&#22788;&#29702;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">280</td> <td style="width:833px;text-align:left;">&#28082;&#21387;&#38392;&#38376;&#21644;&#38400;&#38376;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">300</td> <td style="width:833px;text-align:left;">&#27745;&#65288;&#24223;&#65289;&#27700;&#22788;&#29702;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">400</td> <td style="width:833px;text-align:left;">&#39184;&#39278;&#26381;&#21153;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">450</td> <td style="width:833px;text-align:left;">&#20303;&#23429;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">460</td> <td style="width:833px;text-align:left;">&#32452;&#21512;&#21416;&#25151;&#35774;&#22791;&#21333;&#20803;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">470</td> <td style="width:833px;text-align:left;">&#26263;&#23460;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">480</td> <td style="width:833px;text-align:left;">&#20307;&#32946;&#12289;&#23089;&#20048;&#21644;&#27835;&#30103;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">500</td> <td style="width:833px;text-align:left;">&#24037;&#19994;&#21152;&#24037;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">600</td> <td style="width:833px;text-align:left;">&#23454;&#39564;&#23460;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">650</td> <td style="width:833px;text-align:left;">&#22825;&#25991;&#39302;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">660</td> <td style="width:833px;text-align:left;">&#22825;&#25991;&#21488;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">680</td> <td style="width:833px;text-align:left;">&#21150;&#20844;&#29992;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">700</td> <td style="width:833px;text-align:left;">&#21307;&#30103;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">850</td> <td style="width:833px;text-align:left;">&#23548;&#33322;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">870</td> <td style="width:833px;text-align:left;">&#20892;&#19994;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">900</td> <td style="width:833px;text-align:left;">&#23637;&#35272;&#29992;&#35774;&#22791;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:201px;">&#20998;&#37096; 12-</th> <th style="text-align:left;width:833px;">&#38472;&#35774;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:201px;">050</td> <td style="width:833px;text-align:left;">&#24149;&#24067;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">100</td> <td style="width:833px;text-align:left;">&#33402;&#26415;&#21697;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">300</td> <td style="width:833px;text-align:left;">&#21046;&#36896;&#31665;&#26588;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">400</td> <td style="width:833px;text-align:left;">&#38472;&#35774;&#21644;&#37197;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">500</td> <td style="width:833px;text-align:left;">&#23478;&#20855;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">600</td> <td style="width:833px;text-align:left;">&#22810;&#20154;&#24231;&#26885;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">700</td> <td style="width:833px;text-align:left;">&#31995;&#32479;&#23478;&#20855;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">800</td> <td style="width:833px;text-align:left;">&#23460;&#20869;&#26893;&#29289;&#21644;&#30406;&#26685;</td> </tr> <tr> <td class="text-align:right" style="width:201px;">900</td> <td style="width:833px;text-align:left;">&#38472;&#35774;&#20462;&#22797;&#21644;&#32500;&#20462;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:203px;">&#20998;&#37096; 13-</th> <th style="text-align:left;width:831px;">&#29305;&#27530;&#24314;&#31569;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:203px;">010</td> <td style="width:831px;text-align:left;">&#27668;&#25215;&#32467;&#26500;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">020</td> <td style="width:831px;text-align:left;">&#24314;&#31569;&#27169;&#22359;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">030</td> <td style="width:831px;text-align:left;">&#29305;&#27530;&#29992;&#36884;&#25151;&#38388;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">090</td> <td style="width:831px;text-align:left;">&#36752;&#23556;&#38450;&#25252;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">100</td> <td style="width:831px;text-align:left;">&#38450;&#38647;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">110</td> <td style="width:831px;text-align:left;">&#38452;&#26497;&#20445;&#25252;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">120</td> <td style="width:831px;text-align:left;">&#39044;&#21046;&#32467;&#26500;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">150</td> <td style="width:831px;text-align:left;">&#28216;&#27891;&#27744;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">160</td> <td style="width:831px;text-align:left;">&#27700;&#26063;&#39302;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">165</td> <td style="width:831px;text-align:left;">&#27700;&#19978;&#20048;&#22253;&#35774;&#26045;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">170</td> <td style="width:831px;text-align:left;">&#28020;&#32568;&#21644;&#27700;&#27744;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">175</td> <td style="width:831px;text-align:left;">&#28316;&#20912;&#22330;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">185</td> <td style="width:831px;text-align:left;">&#29399;&#33293;&#21644;&#21160;&#29289;&#25910;&#23481;&#25152;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">190</td> <td style="width:831px;text-align:left;">&#29616;&#22330;&#24314;&#36896;&#30340;&#28954;&#21270;&#28809;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">200</td> <td style="width:831px;text-align:left;">&#20648;&#27833;&#32592;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">220</td> <td style="width:831px;text-align:left;">&#36807;&#28388;&#19979;&#25490;&#27700;&#21644;&#20171;&#36136;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">230</td> <td style="width:831px;text-align:left;">&#28040;&#21270;&#22120;&#35206;&#30422;&#21644;&#38468;&#20214;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">240</td> <td style="width:831px;text-align:left;">&#27687;&#21270;&#31995;&#32479;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">260</td> <td style="width:831px;text-align:left;">&#27745;&#27877;&#35843;&#36136;&#31995;&#32479;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">280</td> <td style="width:831px;text-align:left;">&#26377;&#23475;&#29289;&#36136;&#25972;&#27835;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">400</td> <td style="width:831px;text-align:left;">&#27979;&#25511;&#20202;&#34920;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">500</td> <td style="width:831px;text-align:left;">&#35760;&#24405;&#20202;&#34920;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">550</td> <td style="width:831px;text-align:left;">&#36816;&#36755;&#25511;&#21046;&#20202;&#22120;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">600</td> <td style="width:831px;text-align:left;">&#22826;&#38451;&#33021;&#21644;&#39118;&#33021;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">700</td> <td style="width:831px;text-align:left;">&#23433;&#38450;&#25509;&#20837;&#21644;&#30417;&#25511;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">800</td> <td style="width:831px;text-align:left;">&#27004;&#23431;&#33258;&#21160;&#21270;&#21644;&#25511;&#21046;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">850</td> <td style="width:831px;text-align:left;">&#25506;&#27979;&#19982;&#25253;&#35686;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">900</td> <td style="width:831px;text-align:left;">&#28781;&#28779;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:205px;">14-</th> <th style="text-align:left;width:829px;">&#36755;&#36865;&#31995;&#32479;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:205px;">100</td> <td style="width:829px;text-align:left;">&#23567;&#22411;&#36135;&#36816;&#21319;&#38477;&#26426;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">200</td> <td style="width:829px;text-align:left;">&#30005;&#26799;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">300</td> <td style="width:829px;text-align:left;">&#33258;&#21160;&#25206;&#26799;&#21644;&#33258;&#21160;&#20154;&#34892;&#36947;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">400</td> <td style="width:829px;text-align:left;">&#21319;&#38477;&#26426;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">500</td> <td style="width:829px;text-align:left;">&#29289;&#26009;&#25644;&#36816;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">600</td> <td style="width:829px;text-align:left;">&#36215;&#37325;&#26426;&#21644;&#32518;&#32034;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">700</td> <td style="width:829px;text-align:left;">&#36716;&#21488;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">800</td> <td style="width:829px;text-align:left;">&#33050;&#25163;&#26550;</td> </tr> <tr> <td class="text-align:right" style="width:205px;">900</td> <td style="width:829px;text-align:left;">&#36816;&#36755;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:204px;">15-</th> <th style="text-align:left;width:830px;">&#26426;&#26800;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:204px;">050</td> <td style="width:830px;text-align:left;">&#22522;&#26412;&#26426;&#26800;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">100</td> <td style="width:830px;text-align:left;">&#31649;&#36947;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">200</td> <td style="width:830px;text-align:left;">&#24037;&#33402;&#31649;&#36947;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">300</td> <td style="width:830px;text-align:left;">&#28040;&#38450;&#31649;&#36947;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">400</td> <td style="width:830px;text-align:left;">&#21355;&#29983;&#35013;&#32622;&#21644;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">500</td> <td style="width:830px;text-align:left;">&#37319;&#26262;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">600</td> <td style="width:830px;text-align:left;">&#21046;&#20919;&#35774;&#22791;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">700</td> <td style="width:830px;text-align:left;">&#37319;&#26262;&#12289;&#36890;&#39118;&#21644;&#31354;&#35843;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">800</td> <td style="width:830px;text-align:left;">&#31354;&#27668;&#20998;&#37197;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">900</td> <td style="width:830px;text-align:left;">&#20379;&#26262;&#12289;&#36890;&#39118;&#21644;&#31354;&#35843;&#25511;&#21046;&#35013;&#32622;</td> </tr> <tr> <td class="text-align:right" style="width:204px;">950</td> <td style="width:830px;text-align:left;">&#27979;&#35797;&#12289;&#35843;&#33410;&#21450;&#24179;&#34913;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:203px;">16</th> <th style="text-align:left;width:831px;">&#30005;&#27668;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:203px;">050</td> <td style="width:831px;text-align:left;">&#22522;&#26412;&#30005;&#27668;&#26448;&#26009;&#21644;&#26041;&#27861;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">100</td> <td style="width:831px;text-align:left;">&#30005;&#27668;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">200</td> <td style="width:831px;text-align:left;">&#30005;&#21147;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">300</td> <td style="width:831px;text-align:left;">&#36755;&#37197;&#30005;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">400</td> <td style="width:831px;text-align:left;">&#20302;&#21387;&#37197;&#30005;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">500</td> <td style="width:831px;text-align:left;">&#29031;&#26126;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">700</td> <td style="width:831px;text-align:left;">&#36890;&#20449;</td> </tr> <tr> <td class="text-align:right" style="width:203px;">800</td> <td style="width:831px;text-align:left;">&#22768;&#38899;&#21644;&#35270;&#39057;</td> </tr> </tbody> </table> <table class="perm-table perm-table-horizontal perm-table-highlight" style="width: 1040px;"> <thead> <tr> <th style="text-align:left;width:202px;">17-</th> <th style="text-align:left;width:832px;">&#21152;&#25104;&#21644;&#24212;&#24613;&#24320;&#25903;</th> </tr> </thead> <tbody> <tr> <td class="text-align:right" style="width:202px;">010</td> <td style="width:832px;text-align:left;">&#24212;&#24613;&#24320;&#25903;</td> </tr> <tr> <td class="text-align:right" style="width:202px;">020</td> <td style="width:832px;text-align:left;">&#20445;&#38505;</td> </tr> <tr> <td class="text-align:right" style="width:202px;">030</td> <td style="width:832px;text-align:left;">&#20445;&#20989;</td> </tr> <tr> <td class="text-align:right" style="width:202px;">040</td> <td style="width:832px;text-align:left;">&#21033;&#28070;</td> </tr> </tbody> </table> </div></div><div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_4"><span id=".E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85"></span><h2 class="editable">&#21478;&#35831;&#21442;&#38405;</h2> <ul> <li><a title="&#28155;&#21152;&#20844;&#21496;&#25104;&#26412;&#32534;&#21495;" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/add-company-cost-codes" rel="internal">&#28155;&#21152;&#20844;&#21496;&#25104;&#26412;&#32534;&#21495;</a></li> <li><a title="&#20026; ERP &#38598;&#25104;&#37197;&#32622;&#25104;&#26412;&#32534;&#21495;&#39318;&#36873;&#39033;" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/admin/tutorials/configure-cost-code-preferences-for-erp-integrations" rel="internal">&#20026; ERP &#38598;&#25104;&#37197;&#32622;&#25104;&#26412;&#32534;&#21495;&#39318;&#36873;&#39033;</a></li> <li><a title="Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" rel="internal">Procore &#26377;&#21738;&#20123;&#40664;&#35748;&#25104;&#26412;&#31867;&#22411;&#65311;</a></li> </ul> </div><div mt-section-origin="faq/what-are-procores-default-cost-codes" class="mt-section" id="section_5"><span id=""></span><h2 class="editable">&nbsp;</h2> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_faq.png");}/*]]>*/</style> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Marketing_Snippet" data-section="&#30452;&#25509;&#25104;&#26412;" data-show="false"> </div> </div></div> </div> </div> <div class="mt-content-footer"></div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="返回到本文章顶部">返回顶部</a></li> <li class="grape-article-pagination"><ul class="mt-article-pagination"> <li class="mt-pagination-previous"> <a class="mt-icon-previous-article" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-change-types-and-change-reasons" title="Procore 的默认变更类型和变更原因是什么?"><span>Procore 的默认变更类型和变更原因是什么?</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://zh-sg.support.procore.com/faq/what-are-procores-default-cost-types" title="Procore 有哪些默认成本类型?"><span>Procore 有哪些默认成本类型?</span></a> </li> </ul> </li> </ol> </div> </div> <div class="grape-footer grape-wrapper"> <div class="grape-wrapper-container"> <ol> <li class="grape-footer-copyright">&copy; 版权所有 2025 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> CXone Expert提供 <span class="mt-registered">&reg;</span> </a></li> </ol> </div> </div> <div class="grape-footer-custom"> <div class="mt-custom-footer-container"><div class="mt-custom-footer-left"><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a target="_blank" href="https://www.linkedin.com/company/procore-technologies" rel="external noopener nofollow" class="mt-icon-linkedin2 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.facebook.com/procore.tech" rel="external noopener nofollow" class="mt-icon-facebook5 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.twitter.com/procoretech" rel="external noopener nofollow" class="mt-icon-twitter4 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.instagram.com/procoretech" rel="external noopener nofollow" class="mt-icon-instagram3 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.youtube.com/user/ProcoreVideo" rel="external noopener nofollow" class="mt-icon-youtube link-https"></a></li></ul></div><div class="mt-custom-footer-right"><div class="mt-custom-footer-copyright"><span>&copy; 2025 Procore Technologies, Inc.</span></div><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/privacy" target="_blank" rel="external noopener nofollow" class="link-https">&#38544;&#31169;&#22768;&#26126;</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/terms-of-service" target="_blank" rel="external noopener nofollow" class="link-https">&#26381;&#21153;&#26465;&#27454;</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/en-sg" target="_blank" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="mt-custom-footer-link" id="last-item"><a href="https://app.procore.com/mindtouch/auth" target="_blank" rel="external noopener nofollow" class="link-https">&#30331;&#24405;</a></li></ul></div></div> <script type="text/javascript">/*<![CDATA[*/ <!-- Change default from Draft to Live in Edit and New screens. Added by Dean May 13, 2020 --> $("a.mt-icon-new-page").click(function () { setTimeout( function () { $("label[for='mt-new-templates-create-live']").click(); }, 10000); });/*]]>*/</script> </div> <script type="text/javascript" data-mindtouch-module="true" src="https://a.mtstatic.com/deki/javascript/out/standalone/ui.widget.helpWidget.js?_=9529aea554fde890c4d7cb109f8680ca3b4d1cd2:site_13854"></script><!-- Scroll to Top Button --> <div><button id="back-to-top-button" onclick="scrollToTop()"><i class="fa fa-angle-up">&zwnj;&zwj;&#8203;</i></button></div> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWZQ5W6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10