美菱自动编码器

main
熊朝柱 2 months ago
commit a7634aa66d

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry exported="true" kind="lib" path="jxl.jar"/>
<classpathentry kind="output" path="classes"/>
</classpath>

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>cn.com.origin.autocodemanager</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7

@ -0,0 +1,49 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Autocodemanager Plug-in
Bundle-SymbolicName: cn.com.origin.autocodemanager;singleton:=true
Bundle-Version: 1.0.0
Bundle-Activator: cn.com.origin.autocodemanager.Activator
Require-Bundle: org.eclipse.ui;bundle-version="3.8.0",
org.eclipse.core.runtime;bundle-version="3.8.0",
org.eclipse.ui.forms;bundle-version="3.5.200",
org.eclipse.core.expressions;bundle-version="3.4.400",
com.teamcenter.rac.tcapps;bundle-version="13000.1.0",
TcSoaCoreRac;bundle-version="13000.1.0",
TcSoaCoreTypes;bundle-version="13000.1.0",
com.teamcenter.rac.common;bundle-version="13000.1.0",
com.teamcenter.rac.aifrcp;bundle-version="13000.1.0",
com.teamcenter.rac.kernel;bundle-version="13000.1.0",
com.teamcenter.rac.util;bundle-version="13000.1.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Export-Package: cn.com.origin.autocodemanager,
cn.com.origin.autocodemanager.common,
cn.com.origin.autocodemanager.common.dialog,
cn.com.origin.autocodemanager.common.encrypt,
cn.com.origin.autocodemanager.common.operations,
cn.com.origin.autocodemanager.common.progress,
cn.com.origin.autocodemanager.common.tree,
cn.com.origin.autocodemanager.common.treetable,
cn.com.origin.autocodemanager.export,
cn.com.origin.autocodemanager.handlers,
cn.com.origin.autocodemanager.imports,
cn.com.origin.autocodemanager.views,
cn.com.origin.autocodemanager.views.codestyleview,
cn.com.origin.autocodemanager.views.codeview,
cn.com.origin.autocodemanager.views.listcodeview,
cn.com.origin.autocodemanager.views.testview,
cn.com.origin.autocodemanager.views.treecodeview,
jxl,
jxl.biff,
jxl.biff.drawing,
jxl.biff.formula,
jxl.common,
jxl.common.log,
jxl.demo,
jxl.format,
jxl.read.biff,
jxl.write,
jxl.write.biff
Bundle-ClassPath: jxl.jar,
.
Bundle-ActivationPolicy: lazy

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project [<!ENTITY buildfile SYSTEM "file:./build-user.xml">]>
<project name="cn.com.origin.autocodemanager" default="compile" basedir="E:\java\eclipse\code\TC9\ldx\workspace\cn.com.origin.autocodemanager">
<property environment="env" />
<!-- ********************** 配置开始 ********************* -->
<!-- 设定发布RAC插件的根目录-->
<property name="rac_plugins_des_path" value="G:\project\Code\TC9.1\plugins" />
<!-- 设定新版系统插件名称-->
<property name="des_plugins_name" value="cn.com.origin.autocodemanager_1.0.0.jar" />
<!-- 设定系统Teacmenter缓存路径-->
<property name="tc_cache_dirname" value="C:\Users\Administrator\Teamcenter\RAC" />
<!-- ********************** 配置结束 ********************* -->
<property name="des_plugins_pathname" value="${rac_plugins_des_path}\${des_plugins_name}" />
<property name="basedir" value="E:\java\eclipse\code\TC9\ldx\workspace\cn.com.origin.autocodemanager" />
<target name="copy_plugins">
<delete file="${des_plugins_pathname}" quiet="true" />
</target>
<!-- 删除自定义代码的class-->
<target name="clean_bin">
<delete includeemptydirs="true">
<fileset dir="classes" includes="**/*" />
</delete>
</target>
<!-- 编译源代码 -->
<target name="compile" depends="clean_bin">
<ant antfile="build.xml" inheritAll="false" />
<echo message="compile over!" />
</target>
<!-- 生成新jar包 -->
<target name="make_jar">
<jar destfile="${des_plugins_pathname}" whenempty="skip" manifest="META-INF\MANIFEST.MF" update="true">
<fileset dir="classes" casesensitive="yes">
<include name="**/*.*" />
</fileset>
<fileset dir="${basedir}">
<include name="META-INF\MANIFEST.MF" />
<include name="plugin.xml" />
<include name="plugin.properties" />
<include name="plugin_zh_CN.properties" />
<include name="build.properties" />
</fileset>
</jar>
<echo message="make_jar over!" />
</target>
<!-- 生成新版插件并清除系统缓存 -->
<target name="make_plugins" depends="make_jar">
<echo message="****************make_plugins ${des_plugins_name} over!**********************" />
</target>
</project>

@ -0,0 +1,6 @@
source.. = src/
output.. = classes/
bin.includes = META-INF/,\
.,\
plugin.xml,\
jxl.jar

@ -0,0 +1,384 @@
#
#Tue Feb 23 11:21:13 CST 2021
CodeSegmentName=Code segment name
CodeValue=Code value
Remarks=Remarks
C&U=C&U
ProductCategory=Product category
Self-aligningBallBearing=Self-aligning ball bearing
12Series=12 Series
22Series=22 Series
13Series=13 Series
14Series=14 Series
Other=Other
SphericalRollerBearing=Spherical roller bearing
TypeC=Type C
TypeCK=Type CK
TypeCK30=Type CK30
TypeC/W33=Type C/W33
TypeCK/W33=Type CK/W33
TypeCK30/W33=Type CK30/W33
TypeCK+H=Type CK+H
TypeCK/W33+H=Type CK/W33+H
TypeCC=Type CC
TypeCCK=Type CCK
TypeCCK30=Type CCK30
TypeCC/W33=Type CC/W33
TypeCCK/W33=Type CCK/W33
TypeCCK30/W33=Type CCK30/W33
TypeCCK+H=Type CCK+H
TypeCCK/W33+H =Type CCK/W33+H
TypeCA(includingTypeCAC)=Type CA (including type CAC)
TypeCAK(includingTypeCACK)=Type CAK (including type CACK)
TypeCAK30(includingTypeCACK30)=Type CAK30 (including type CACK30)
TypeCA/W33(includingTypeCAC/W33)=Type CA/W33 (including type CAC/W33)
TypeCAK/W33(includingCACK/W33type)=Type CAK/W33 (including CACK/W33 type)
TypeCAK30/W33(includingTypeCACK30/W33)=Type CAK30/W33 (including type CACK30/W33)
TypeCAK+H(includingTypeCACK+H)=Type CAK+H (including type CACK+H)
TypeCAK/W33+H(includingTypeCACK/W33+H)=Type CAK/W33+H (including type CACK/W33+H)
SingleRowSphericalRollerBearing=Single row spherical roller bearing
SplitSphericalRollerBearings=Split spherical roller bearings
TypeYA(includingYA1\u3001YA2)=Type YA (including YA1\u3001YA2)
TypeYAK(includingYA1K\u3001YA2K)=Type YAK (including YA1K\u3001YA2K)
TypeYAK30(includingYA1K30\u3001YA2K30)=Type YAK30 (including YA1K30\u3001YA2K30)
TypeYA/W3(includingYA1/W33\u3001YA2/W33)=Type YA/W33 (including YA1/W33\u3001YA2/W33)
TypeYAK/W33(includingYA1K/W33\u3001YA2K/W33)=Type YAK/W33 (including YA1K/W33\u3001YA2K/W33)
TypeYAK30/W33(includingYA1K30/W33\u3001YA2K30/W33)=Type YAK30/W33 (including YA1K30/W33\u3001YA2K30/W33)
TypeYAK+H(includingYA1K+H\u3001YA2K+H)=Type YAK+H (including YA1K+H\u3001YA2K+H)
TypeYAK/W33+H(includingYA1K/W33+H\u3001YA2K/W33+H)=Type YAK/W33+H (including YA1K/W33+H\u3001YA2K/W33+H)
LNSeries(lowNoiseIndustry)=LN Series (low noise industry)
VDSeries(VibrationMachinery)=VD Series (Vibration machinery)
TaperedRollerBearing=Tapered roller bearing
3SingleRowTaperedRollerBearingType3=3:Single row tapered roller bearing type 3
35DoubleInnerRingDoubleRowTaperedRollerBearingType35=35:Double inner ring double row tapered roller bearing type 35
37DoubleOuterRingDoubleRowTaperedRollerBearingsModel37=37:Double outer ring double row tapered roller bearings model 37
38FourRowTaperedRollerBearingType38=38:Four row tapered roller bearing type 38
TSTSTypeSingleRowBritishTaperedRollerBearing=TS:TS type single row British tapered roller bearing
TSFTSFSingleRowEnglishTaperedRollerBearingWithFlangeOuterRing=TSF:TSF single row English tapered roller bearing with flange outer ring
TDOTDODoubleRowOuterRingBritishTaperedRollerBearing=TDO:TDO double row outer ring British tapered roller bearing
TDITDIDoubleRRowInnerRingBritishTaperedRollerBearing=TDI:TDI double row inner ring British tapered roller bearing
2TS-DMFrontMountingOf2TS-DMTwoSingleRowBearingCombinations=2TS-DM:Front mounting of 2TS-DM two single row bearing combinations
2TS-IM2TS-IMTwoSingleRowBearingCombinationReverseInstallation=2TS-IM:2TS-IM two single row bearing combination reverse installation
2TS-TMInstallationOf2TS-TMTwoSingleRowBearingsInSeries=2TS-TM:Installation of 2TS-TM two single row bearings in series
TwoDoubleRacewayInnerRingsOfTQOFourRowEnglishTaperedRollerBearing=Two double raceway inner rings of TQO four row English tapered roller bearing
TQITSFourRowEnglishTaperedRollerBearingTwoDoubleRollToOuterRing=TQITS four row English tapered roller bearing two double roll to outer ring
JJSeriesMetricTaperedRollerBearings=J:J series Metric tapered roller bearings
EEEESeriesTaperedRollerBearingWithInnerRingRibAndClosedGuide=EE:EE series tapered roller bearing with inner ring rib and closed guide
CC-CC-SeriesCarburizedSteelBearing=CC-:CC- series carburized steel bearing
HEHESeriesHighEfficiencyBearing=HE:HE series high efficiency bearing
EXNewGenerationOfEXUpgradeProducts=EX:New generation of EX upgrade products
Other=Other
CylindricalRollerBearing=Cylindrical roller bearing
TypeN=Type N
TypeNH=Type NH
TypeNF=Type NF
TypeNU=Type NU
TypeNJ=Type NJ
TypeNUP=Type NUP
TypeRNU=Type RNU
TypeRN=Type RN
TypeNN=Type NN
TypeNN...W33=Type NN...W33
TypeNN...K=Type NN...K
TypeNN...K/W33=Type NN...K/W33
TypeNNU=Type NNU
TypeNNU...K=Type NNU...K
TypeNNU...K/W33=Type NNU...K/W33
TypeFC=Type FC
TypeFCD=Type FCD
TypeFCDP=Type FCDP
TypeNB=Type NB
TypeNFP=Type NFP
TypeNJP=Type NJP
TypeNCL=Type NCL
TypeNNUP=Type NNUP
TypeNNP=Type NNP
TypeNNF=Type NNF
TypeNNQB=Type NNQB
TypeNNTB=Type NNTB
TypeNNTUP=Type NNTUP
TypeNNQP=Type NNQP
SingleRowFullRollerCylindricaRollerBearing=Single row full roller cylindrical roller bearing
DoubleRowFullRollerCylindricalRollerBearing=Double row full roller cylindrical roller bearing
Multi-rowFullRollerCylindricalRollerBearing=Multi-row full roller cylindrical roller bearing
SplitCylindricalRollerBearing=Split cylindrical roller bearing
NCLAndSLType=NCL and SL type
TDSeriesLongLifeCylindricalRollerBearing=TD series long life cylindrical roller bearing
NFLSeriesCylindricalRollerBearing=NFL series cylindrical roller bearing
TMSeriesGearboxBearing=TM series gearbox bearing
NNFLSeriesDoubleRowCylindricalRollerBearing=NNFL series double row cylindrical roller bearing
BSeriesBackBackedBearing=B series back backed bearing
TypeNUHJ=Type NUHJ
HCHybridInsulatedBearing=HC hybrid insulated bearing
ThrustBallBearing=Thrust Ball Bearing
ThrustBallBearing=Thrust Ball Bearing
BidirectionalThrustBallBearing=Bidirectional Thrust Ball Bearing
ThrustBallBearingWithSphericalRing=Thrust Ball Bearing with spherical ring
BidirectionalThrustBallBearingWithSphericalRing=Bidirectional Thrust Ball Bearing with spherical ring
ThrustBallBearingUnit=Thrust Ball Bearing Unit
DeepGrooveBallBearing=Deep groove ball bearing
Series60DeepGrooveBallBearings=Series 60 deep groove ball bearings
Series62DeepGrooveBallBearings=Series 62 deep groove ball bearings
Series63DeepGrooveBallBearings=Series 63 deep groove ball bearings
Series64DeepGrooveBallBearings=Series 64 deep groove ball bearings
Series617DeepGrooveBallBearings=Series 617 deep groove ball bearings
Series618DeepGrooveBallBearings=Series 618 deep groove ball bearings
Series619DeepGrooveBallBearings=Series 619 deep groove ball bearings
Series622DeepGrooveBallBearings=Series 622 deep groove ball bearings
Series630DeepGrooveBallBearings=Series 630 deep groove ball bearings
Series160DeepGrooveBallBearings=Series 160 deep groove ball bearings
Series161DeepGrooveBallBearings=Series 161 deep groove ball bearings
6/Non-standardd=6/Non-standard d
Series40DeepGrooveBallBearings=Series 40 deep groove ball bearings
Series42DeepGrooveBallBearings=Series 42 deep groove ball bearings
Series43DeepGrooveBallBearings=Series 43 deep groove ball bearings
Series44DeepGrooveBallBearings=Series 44 deep groove ball bearings
4/Non-standardd=4/Non-standard d
RInchSeriesDeepGrooveBallBearings=R Inch series deep groove ball bearings
AngularContactBallBearings=Angular contact ball bearings
SingleRowAngularContactBearingType7=Single row angular contact bearing type 7
OuterRingSeparationAngularContactBallBearingTypeS7=Outer ring separation angular contact ball bearing type S7
InneRingSeparationAngularContactBallBearingTypeSN7=Inner ring separation angular contact ball bearing type SN7
AngularContactBallBearingB78WithLockInInnerRing=Angular contact ball bearing B78 with lock in inner ring
DoubleHalfOuterRingFourPointContactBallBearingQJF=Double half outer ring four point contact ball bearing QJF
DoubleHalfOuterRingThreePointContactBallBearingQJT=Double half outer ring three point contact ball bearing QJT
FourPointContactBallBearingQJ=Four point contact ball bearing QJ
DoubleHalfInnerRingThreePointContactBallBearingQJS=Double half inner ring three point contact ball bearing QJS
32,33SeriesDoubleRowAngularContactBalBearings=32,33 series double row angular contact ball bearings
TypeHP=Type HP
CeramicAngularContactBallBearing=Ceramic angular contact ball bearing
AutomobileSiliconeFanDoubleRowAngularContactBallBearings=Automobile silicone fan Double row angular contact ball bearings
AutomobileGeneratorDoubleRowAngularContactBallBearings=Automobile generator Double row angular contact ball bearings
AutomobileGearboxDoubleRowAngularContactBallBearings=Automobile gearbox Double row angular contact ball bearings
HCHybridInsulatedBearing=HC hybrid insulated bearing
ThrustCRB=Thrust CRB
One-waySingle-rowThrustCRB=One-way single-row thrust CRB
Double-rowOrmulti-rowCRBWithOne-wayThrust=Double-row or multi-row CRB with one-way thrust
BidirectionalThrustCRB=Bidirectional thrust CRB
One-waySingleRowThrustCRBAndCageAssembly=One-way single row thrust CRB and cage assembly
CRBAndCageAssemblyWithTwoOrMoreRowsOfUnidirectionalthrust=CRB and cage assembly with two or more rows of unidirectional thrust
RadialNeedleRollerBearing=Radial needle roller bearing
1SeriesDrawnCupHK(perforatedType)=1 series drawn cup HK (perforated type)
1SeriesDrawnCupJ(imperialPerforatedType)=1 series drawn cup J (imperial perforated type)
1SeriesDrawnCupBK(sealingType)=1 series drawn cup BK (sealing type)
1SeriesDrawnCupMJ(imperialSealingType)=1 series drawn cup MJ (imperial sealing type)
1SeriesDrawnCupF(perforatedTipFullNeedle,RibLimit)=1 series drawn cup F (perforated tip full needle, rib limit)
1SeriesDrawnCupB(imperialPerforatedTipFullNeedle,RibLimit)=1 series drawn cup B (imperial perforated tip full needle, rib limit)
1SeriesDrawnCupMF(sealingTipFullNeedle,RibLimit)=1 series drawn cup MF (sealing tip full needle, rib limit)
1SeriesDrawnCupM(imperialSealingTipfullNeedle,RibLimit)=1 series drawn cup M (imperial sealing tip full needle, rib limit)
1SeriesDrawnCupFY(perforatedFlatHeadFullNeedleGreaseLimit)=1 series drawn cup FY (perforated flat head full needle grease limit)
1SeriesDrawnCupMFY(sealingFlatHeadFullNeedleGreaseLimit)=1 series drawn cup MFY (sealing flat head full needle grease limit)
1SeriesDrawnCupHFtype(needleClutch)=1 series drawn cup HF type (needle clutch)
1SeriesDrawnCupHFL(needleClutchAssembly)=1 series drawn cup HFL (needle clutch assembly)
2SeriesDrawnCupHKH(perforatedType)=2 series drawn cup HKH (perforated type)
2SeriesDrawnCupJH(imperialPerforatedType)=2 series drawn cup JH (imperial perforated type)
2SeriesDrawnCupBKH(sealingType)=2 series drawn cup BKH (sealing type)
2SeriesDrawnCupMJH(imperialSealingType)=2 series drawn cup MJH (imperial sealing type)
2SeriesDrawnCupFH(sealingTipFullNeedle,RibLimit)=2 series drawn cup FH (sealing tip full needle, rib limit)
2SeriesDrawnCupBH(imperialSealingTipFullNeedle,RibLimit=2 series drawn cup BH (imperial sealing tip full needle, rib limit)
2SeriesDrawnCupMFH(sealingtipFullNeedle,RibLimit)=2 series drawn cup MFH (sealing tip full needle, rib limit)
2SeriesDrawnCupMH(imperialSealingTipFullNeedle,RibLimit=2 series drawn cup MH (imperial sealing tip full needle, rib limit)
2SeriesDrawnCupFYH(perforatedFlatHeadFullNeedleGreaseLimit)=2 series drawn cup FYH (perforated flat head full needle grease limit)
2SeriesDrawnCupMFYH(sealingFlatHeadFullNeedleGreaseLimit)=2 series drawn cup MFYH (sealing flat head full needle grease limit)
2SeriesDrawnCupHFH(needleClutch)=2 series drawn cup HFH (needle clutch)
2SeriesDrawnCupHFLH(needleClutchAssembly)=2 series drawn cup HFLH (needle clutch assembly)
EntityNAType(ordinaryType)=Entity NA type (ordinary type)
EntityRNAType(withoutInnerCircle)=Entity RNA type (without inner circle)
PhysicalNAVType(FullNeedle) =Physical NAV type (full needle)
SolidRNAVType(noInnerRing,FullNeedle)=Solid RNAV type (no inner ring, full needle)
EntityNAOType(outerRingWithoutRibs)=Entity NAO type (outer ring without ribs)
SolidRNAOType(noInnerRing,NoRibs)=Solid RNAO type (no inner ring, no ribs)
SolidRNAPType(withoutInnerRing,withFlatWasher)=Solid RNAP type (without inner ring, with flat washer)
SolidNAVPType(withFlatWasher,FullNeedle)=Solid NAVP type (with flat washer, full needle)
SolidRNAVPType(withoutInnerRing,WithFlatWasher,FullNeedle)=Solid RNAVP type (without inner ring, with flat washer, full needle)
EntityNAOV(ORWithoutRibs,IRWithDoubleRibs,FullStitches)=Entity NAOV (OR without ribs, IR with double ribs, full stitches)
K-shapedRadialNeedleRollerAndCageAssembly(commonAssembly)=K-shaped radial needle roller and cage assembly (common assembly)
KZKTypeRadialNeedleRollerAndCageAssembly(forCrankPinSupport)=KZK type radial needle roller and cage assembly (for crank pin support)
KBKRadialNeedleRollerAndCageAssembly(forPistonPinSupport)=KBK radial needle roller and cage assembly (for piston pin support)
ThrustNeedleRollerBearing=Thrust needle roller bearing
AXKThrust needle roller and cage assembly=AXK:Thrust needle roller and cage assembly
AXWThrust needle roller bearing(with center sleeve) = AXW:Thrust needle roller bearing(with center sleeve)
AXThrust needle roller bearing(with two washers) = AX:Thrust needle roller bearing(with two washers)
SAXThrust needle roller bearing(with one washer) = SAX:Thrust needle roller bearing(with one washer)
ThrustAngularContactBallBearing=Thrust angular contact ball bearing
OneWayThrustAngularContactBallBearing=One way thrust angular contact ball bearing
23SeriesBidirectionalThrustAngularContactBallBearing=23 series bidirectional thrust angular contact ball bearing
KOW=KOW
TaperRollerThrustBearing=Taper roller thrust bearing
One-wayThrustTaperedRollerBearings=One-way thrust tapered roller bearings
DoubleThrustTaperedRollerBearings=Double thrust tapered roller bearings
ThrustSphericalRollerBearing=Thrust spherical roller bearing
Series292=Series292
Series293=Series293
Series294=Series294
WaterPumpBearing=Water pump bearing
TypeWB(doubleRowBall)=Type WB (double row ball)
TypeWR(leftRoller-rightBall)=Type WR (left roller-right ball)
TypeWBBR(doubleRowBallSingleRowRoller)=Type WBBR (double row ball single row roller)
TypeWBRR(singleRowBallDoubleRowRoller)=Type WBRR (single row ball double row roller)
TypeWZ(leftBall-rightRoller)=Type WZ (left ball-right roller)
TensionWheelBearing=Tension wheel bearing
TypeBT=Type BT
TypeBTB=Type BTB
TypeZL=Type ZL
TypeDL=Type DL
TypeZD=Type ZD
TypeDD=Type DD
TypeZZ=Type ZZ
HubBearing=Hub bearing
TypeDAC(FirstGenerationHubBearingWithDoubleRowBallStructure)=Type DAC(First generation hub bearing with double row ball structure)
TypeDACF(SecondGenerationHubBearingWithDoubleRowBallStructure)=Type DACF(Second generation hub bearing with double row ball structure)
TypeDU(FirstGenerationHubBearingWithDoubleRowTaperedStructure)=Type DU(First generation hub bearing with double row tapered structure)
TypeDUF(SecondGenerationHubBearingWithDoubleRowTaperedStructure)=Type DUF(Second generation hub bearing with double row tapered structure)
TypeDAC2F(ThirdGenerationHubBearingWithDoubleRowBallStructure)=Type DAC2F(Third generation hub bearing with double row ball structure)
TypeDUC2F(ThirdGenerationHubBearingWithDoubleRowTaperedStructure)=Type DUC2F(Third generation hub bearing with double row tapered structure)
AutomotiveElectromagneticClutchBearing=Automotive electromagnetic clutch bearing
TypeDA=Type DA
ExternalSphericalBallBearing=External Spherical Ball Bearing
TypeUCExternalSphericalBallBearingsWithTopWire=Type UC:External spherical ball bearings with top wire
TypeUELExternalSphericalBallbearingWithEccentricSleevee=Type UEL:External spherical ball bearing with eccentric sleevee
TypeUKExternalSphericalBallBearingsWithTaperedHoles=Type UK:External spherical ball bearings with tapered holes
TypeUBOneEndFlatHeadOuterSphericalBallBearingWithTopWire=Type UB:One end flat head outer spherical ball bearing with top wire
TypeUELightDutyOuterSphericalBallBearingsWithWccentricSleeve=Type UE:Light duty outer spherical ball bearings with eccentric sleeve
TypeUDFlatHeadOuterBphericalBallBearingsAtBothEnds=Type UD:Flat head outer spherical ball bearings at both ends
JointBearing=Joint bearing
TypeGECentripetalJointBearing=Type GE:Centripetal joint bearing
TypeGACAngularContactJointBearing=Type GAC:Angular contact joint bearing
TypeGXThrustJointBearing=Type GX:Thrust joint bearing
TypeSIAssemblyTypeStemEndJointBearingWithInternalThread=Type SI:Assembly type stem end joint bearing with internal thread
TypeSAAssemblyRodEndJointBearingWithExternalThread=Type SA:Assembly rod end joint bearing with external thread
TypeSIBIntegralTypeRodEndJointBearingWithInternalThread=Type SIB:Integral type rod end joint bearing with internal thread
TypeSABIntegralTypeRodEndJointBearingWithExternalThread=Type SAB:Integral type rod end joint bearing with external thread
TypeSILAssemblyRodEndJointBearingWithLeftInternalThread=Type SIL:Assembly rod end joint bearing with left internal thread
TypeSALAssemblyTypeRodEndJointBearingWithLeft-handExternalThread=Type SAL:Assembly type rod end joint bearing with left-hand external thread
TypeSILBIntegralRodEndJointBearingWithLeftInternalThread=Type SILB:Integral rod end joint bearing with left internal thread
TypeSALBIntegralRodEndJointBearingWithLeftExternalThread=Type SALB:Integral rod end joint bearing with left external thread
TypeSQBentRodTypeBallHeadRodEndJointBearing=Type SQ:Bent rod type ball head rod end joint bearing
TypeSQZStraightRodTypeBallHeadRodEndJointBearing=Type SQZ:Straight rod type ball head rod end joint bearing
TypeSQDSingleRodTypeBallHeadRodEndJointBearing=Type SQD:Single rod type ball head rod end joint bearing
TypeSQLLeft-handedCurvedRodTypeBallHeadRodEndJointBearing=Type SQL:Left-handed curved rod type ball head rod end joint bearing
TypeSQLDLeft-handedSingle-RodBallHead=Type SQLD:Left-handed single - rod ball head
TypeSKRodEndJointBearingWithCylindricalWelding(Cylindrical)=Type SK:Rod end joint bearing with cylindrical welding (cylindrical)
TypeSFWeldedRodEndJointBearingWithFlatBase(SquareType)=Type SF:Welded rod end joint bearing with flat base (square type)
TypeSIRRod-EndArticulatedBearingWithLatch=Type SIR:Rod-end articulated bearing with latch
ForkliftBearing=Forklift bearing
TypeMGMastGuideBearing=Type MG Mast Guide Bearing
TypeCGChainGuideBearings=Type CG Chain Guide Bearings
TypeSRSideRollerBearings=Type SR Side Roller Bearings
TypeCRARollerStructure(MainRoller)+RollerBearing(SideRoller)=Type CRA:roller structure (main roller) +roller bearing(side roller)
TypeCRBRollerStructure(MainRoller)+SliderTypeSlidingBearing(SideRoller)=Type CRB:roller structure(main roller)+slider type sliding bearing(side roller)
TypeCRCRollerStructure(MainRoller)WithoutSideRoller=Type CRC:roller structure (main roller) without side roller
TypeCBABallStructure(MainRoller)+RollerBearing(SideRoller)=Type CBA:ball structure (main roller) +roller bearing(side roller)
TypeCBBBallStructure(MainRoller)+SliderTypeSlidingBearing(SideRoller)=Type CBB:ball structure (main roller) +slider type sliding bearing(side roller)
TypeCBCBallStructure(MainRoller)WithoutSideRoller=Type CBC:ball structure (main roller) without side roller
SlewingBearingAndWindPowerBearing=Slewing bearing and wind power bearing
Type010ToothlessSingle-rowFour-pointcontactBallStyle=Type 010 toothless single-row four-point contact ball style
Type020ToothlessDoubleRejectionBallStyle=Type 020 toothless double rejection ball style
Type110ToothlessSingleRowCrossRollerStyle=Type 110 toothless single row cross roller style
Type130ToothlessThreeRowsOfRollers=Type 130 toothless three rows of rollers
Type011SmallMeshModulusOfExternalTeethSingle-row4Pstyle=Type 011 small mesh modulus of external teeth single-row 4P style
Type012LargeMeshModulusOfExternalTeethSingle-row4Pstyle=Type 012 large mesh modulus of external teeth single-row 4P style
Type013SmallMeshingModulusOfInnerTeethSingle-row4Pstyle=Type 013 small meshing modulus of inner teeth single-row 4P style
Type014LargeMeshingModulusOfInnerTeethSingle-row4Pstyle=Type 014 large meshing modulus of inner teeth single-row 4P style
Type021SmallMeshModulusOfExternalTeethDoubleRejectionBallStyle=Type 021 small mesh modulus of external teeth double rejection ball style
Type022LargeMeshModulusOfExternalTeethDoubleRejectionBallStyle=Type 022 large mesh modulus of external teeth double rejection ball style
Type023SmallMeshingModulusOfInnerTeethDoubleRejectionBallStyle=Type 023 small meshing modulus of inner teeth double rejection ball style
Type024LargeMeshingModulusOfInnerTeethDoubleRejectionBallStyle=Type 024 large meshing modulus of inner teeth double rejection ball style
Type111SmallMeshModulusOfExternalTeethSingleRowCrossRollerStyle=Type 111 small mesh modulus of external teeth single row cross roller style
Type112LargeMeshModulusOfExternalTeethSingleRowCrossRollerStyle=Type 112 large mesh modulus of external teeth single row cross roller style
Type113SmallMeshingModulusOfInnerTeethSingleRowCrossRollerStyle=Type 113 small meshing modulus of inner teeth single row cross roller style
Type114LargeMeshingModulusOfInnerTeethSingleRowCrossRollerStyle=Type 114 large meshing modulus of inner teeth single row cross roller style
Type131SmallMeshModulusOfExternalTeethThreeRowsOfRollers=Type 131 small mesh modulus of external teeth three rows of rollers
Type132LargeMeshModulusOfExternalTeethThreeRowsOfRollers=Type 132 large mesh modulus of external teeth three rows of rollers
Type133SmallMeshingModulusOfInnerTeethThreeRowsOfRollers=Type 133 small meshing modulus of inner teeth three rows of rollers
Type134LargeMeshingModulusOfInnerTeethThreeRowsOfRollers=Type 134 large meshing modulus of inner teeth three rows of rollers
Type030ToothlessDoubleRowFourPointContactBallStyle=Type 030 toothless double row four point contact ball style
Type031SmallMeshModulusOfExternalTeethdoublerow4Pstyle=Type 031 small mesh modulus of external teeth double row 4P style
Type032LargeMeshModulusOfExternalTeethdoublerow4Pstyle=Type 032 large mesh modulus of external teeth double row 4P style
Type033SmallMeshingModulusOfInnerTeethdoublerow4Pstyle=Type 033 small meshing modulus of inner teeth double row 4P style
Type034LargeMeshingModulusOfInnerTeethdoublerow4Pstyle=Type 034 large meshing modulus of inner teeth double row 4P style
UnilateralBearing=Unilateral bearing
TypeDXZ(OneRowNeedleAndOneRowBall)=Type DXZ (one row needle and one row ball)
TypeDX(SeparatedOuterRingType)=Type DX (Separated outer ring type)
TypeOW(OneRowAbnormityRollerAndOneRowBall)=Type OW(one row abnormity roller and one row ball)
TypeNB(SingleShortNeedle)=Type NB (single short needle)
TypeBB(SingleLongNeedle)=Type BB(single long needle)
TypeCSK(SingleAbnormityRoller)=Type CSK (single abnormity roller)
ClutchReleaseBearingForAutomobiles=Clutch release bearing for automobiles
TypeTPush-styleClutchReleaseBearing=Type T:Push-style clutch release bearing
TypeWTNon-aligningPush-styleOuterRingRotaryClutchReleaseBearingUnit=Type WT:Non-aligning push-style outer ring rotary clutch release bearing unit
TypeNTNon-aligningPush-styleInnerRingRotaryClutchReleaseBearingUnit=Type NT:Non-aligning push-style inner ring rotary clutch release bearing unit
TypeNLNon-aligningDraw-styleClutchReleaseBearingUnit=Type NL:Non-aligning draw-style clutch release bearing unit
TypeCTSelf-aligningPush-styleClutchReleaseBearingUnit=Type CT:Self-aligning push-style clutch release bearing unit
TypeCLSelf-aligningDraw-styleClutchReleaseBearingUnit=Type CL:Self-aligning draw-style clutch release bearing unit
LinearBallBearings=Linear ball bearings
TypeLBLinearMotionBallBearing=Type LB:Linear motion ball bearing
TypeLRLinearMotionRollerBearing=Type LR:Linear motion roller bearing
TypeLBSLinearMotionBallRailBearing=Type LBS:Linear motion ball rail bearing
TypeLRSLinearMotionRollerRailBearing=Type LRS:Linear motion roller rail bearing
TypeLNSLinearMotionNeedleRollerRailBearing=Type LNS:Linear motion needle roller rail bearing
TypeLBDDrawnCupLinearBearing=Type LBD:Drawn cup linear bearing
AutomobileShockAbsorberBearing=Automobile shock absorber bearing
SuspensionStrutBearing=Suspension strut bearing
BallCageAndBallCageAssembly=Ball cage and ball cage assembly
SeriesBJBallCageBearing=Series BJ ball cage bearing
SeriesEBJBallCageBearing=Series EBJ ball cage bearing
SeriesUJBallCageBearing=Series UJ ball cage bearing
SeriesEUJBallCageBearing=Series EUJ ball cage bearing
SeriesRFBallCageBearing=Series RF ball cage bearing
SeriesDOJBallCageBearing=Series DOJ ball cage bearing
SeriesDOJLBallCageBearing=Series DOJL ball cage bearing
SeriesEDOJBallCageBearing=Series EDOJ ball cage bearing
SeriesTJBallCageBearing=Series TJ ball cage bearing
SeriesETJBallCageBearing=Series ETJ ball cage bearing
SeriesVLBallCageBearing=Series VL ball cage bearing
SeriesFTJBallCageBearing=Series FTJ ball cage bearing
(Series)CageBearingAssembly=(Series)Cage bearing assembly
RepairKit=Repair Kit
CeramicBearing=Ceramic bearing
None=None
MiniatureDeepGrooveBallBearing=Miniature deep groove ball bearing
Series60MiniatureBallBearings=Series 60 miniature ball bearings
Series62MiniatureBallBearings=Series 62 miniature ball bearings
Series63MiniatureBallBearings=Series 63 miniature ball bearings
Series67MiniatureBallBearings=Series 67 miniature ball bearings
Series68MiniatureBallBearings=Series 68 miniature ball bearings
Series69MiniatureBallBearings=Series 69 miniature ball bearings
RISeriesMiniatureBallBearings=RI Series miniature ball bearings
OtherPartsAndProducts=Other parts and products
IRSolidFlatBushing=IR Solid flat bushing
IRSSolidBushing(withShaftShoulder)=IRS Solid bushing (with shaft shoulder)
IJStampingCollar=IJ Stamping collar
ASGsketOrWasher=AS Gsket or washer
LXWheelCoreAndWheelCoreSsembly=LX Wheel core and wheel core ssembly
NPNeedleOrPinRoller=NP Needle or pin roller
AutoRockArmBearing=Auto rock arm bearing
TypeNKSolidCoreShaftRockerArmBearing=Type NK Solid core shaft rocker arm bearing
TypeNKOHollowShaftRockerArmBearing=Type NKO hollow shaft rocker arm bearing
BearingOfTextileMachinery=Bearing of textile machinery
TypeBZRotorBearing=Type BZ Rotor bearing
TypeGZOpeningRollerBearing=Type GZ Opening roller Bearing
TypeSLTopRollerBearing=Type SL Top roller bearing
TypelZBottomRollerBearing=Type lZ Bottom roller bearing
TypeDZSpindleBearing=Type DZ spindle bearing
WindingHeadBearing=Winding head bearing
RollerBearing=Roller bearing
TypeFGeneralBearingForSpinningMachine=Type F General bearing for spinning machine
OtherNon-standardBearingsOrNonBearingProducts=Other non-standard bearings or non bearing products
Non-standardBearings=Non-standard bearings
ComponentBearing=Component bearing
BearingGeneralParts=Bearing general parts
Ball=Ball
TaperedRoller=Tapered roller
Needle=Needle
CylindricalRoller=Cylindrical roller
SphericalRoller=Spherical roller
CeramicBall=Ceramic ball
Special-shapedRoller=Special-shaped roller
WheelBolt=Wheel bolt
O-ring=O-ring
StopRing=Stop ring
Rivet=Rivet
AdapterSleeve=Adapter sleeve
WithdrawalSleeve=Withdrawal sleeve
Grease=Grease

@ -0,0 +1,384 @@
#
#Tue Feb 23 11:21:13 CST 2021
CodeSegmentName=\u7801\u6BB5\u540D\u79F0
CodeValue=\u7801\u503C
Remarks=\u5907\u6CE8
C&U=\u4EBA\u672C\u96C6\u56E2
ProductCategory=\u4EA7\u54C1\u7C7B
Self-aligningBallBearing=\u8C03\u5FC3\u7403\u8F74\u627F
12Series=12\u7CFB\u5217
22Series=22\u7CFB\u5217
13Series=13\u7CFB\u5217
14Series=14\u7CFB\u5217
Other=\u5176\u4ED6
SphericalRollerBearing=\u8C03\u5FC3\u6EDA\u5B50\u8F74\u627F
TypeC=C\u578B
TypeCK=CK\u578B
TypeCK30=CK30\u578B
TypeC/W33=C/W33\u578B
TypeCK/W33=CK/W33\u578B
TypeCK30/W33=CK30/W33\u578B
TypeCK+H=CK+H\u578B
TypeCK/W33+H=CK/W33+H\u578B
TypeCC=CC\u578B
TypeCCK=CCK\u578B
TypeCCK30=CCK30\u578B
TypeCC/W33=CC/W33\u578B
TypeCCK/W33=CCK/W33\u578B
TypeCCK30/W33=CCK30/W33\u578B
TypeCCK+H=CCK+H\u578B
TypeCCK/W33+H=CCK/W33+H\u578B
TypeCA(includingTypeCAC)=CA\u578B\uFF08\u5305\u62ECCAC\u578B\uFF09
TypeCAK(includingTypeCACK)=CAK\u578B\uFF08\u5305\u62ECCACK\u578B\uFF09
TypeCAK30(includingTypeCACK30)=CAK30\u578B\uFF08\u5305\u62ECCACK30\u578B\uFF09
TypeCA/W33(includingTypeCAC/W33)=CA/W33\u578B\uFF08\u5305\u62ECCAC/W33\u578B\uFF09
TypeCAK/W33(includingCACK/W33type)=CAK/W33\u578B\uFF08\u5305\u62ECCACK/W33\u578B\uFF09
TypeCAK30/W33(includingTypeCACK30/W33)=CAK30/W33\u578B\uFF08\u5305\u62ECCACK30/W33\u578B\uFF09
TypeCAK+H(includingTypeCACK+H)=CAK+H\u578B\uFF08\u5305\u62ECCACK+H\u578B\uFF09
TypeCAK/W33+H(includingTypeCACK/W33+H)=CAK/W33+H\u578B\uFF08\u5305\u62ECCACK/W33+H\u578B\uFF09
SingleRowSphericalRollerBearing=\u5355\u5217\u8C03\u5FC3\u6EDA\u5B50\u8F74\u627F
SplitSphericalRollerBearings=\u5256\u5206\u5F0F\u8C03\u5FC3\u6EDA\u5B50\u8F74\u627F
TypeYA(includingYA1\u3001YA2)=YA\u578B\uFF08\u5305\u62ECYA1\u3001YA2\uFF09
TypeYAK(includingYA1K\u3001YA2K)=YAK\u578B\uFF08\u5305\u62ECYA1K\u3001YA2K\uFF09
TypeYAK30(includingYA1K30\u3001YA2K30)=YAK30\u578B\uFF08\u5305\u62ECYA1K30\u3001YA2K30\uFF09
TypeYA/W3(includingYA1/W33\u3001YA2/W33)=YA/W33\u578B\uFF08\u5305\u62ECYA1/W33\u3001YA2/W33\uFF09
TypeYAK/W33(includingYA1K/W33\u3001YA2K/W33)=YAK/W33\u578B\uFF08\u5305\u62ECYA1K/W33\u3001YA2K/W33\uFF09
TypeYAK30/W33(includingYA1K30/W33\u3001YA2K30/W33)=YAK30/W33\u578B\uFF08\u5305\u62ECYA1K30/W33\u3001YA2K30/W33\uFF09
TypeYAK+H(includingYA1K+H\u3001YA2K+H)=YAK+H\u578B\uFF08\u5305\u62ECYA1K+H\u3001YA2K+H\uFF09
TypeYAK/W33+H(includingYA1K/W33+H\u3001YA2K/W33+H)=YAK/W33+H\u578B\uFF08\u5305\u62ECYA1K/W33+H\u3001YA2K/W33+H\uFF09
LNSeries(lowNoiseIndustry)=LN\u7CFB\u5217\uFF08\u4F4E\u566A\u97F3\u884C\u4E1A\uFF09
VDSeries(VibrationMachinery)=VD\u7CFB\u5217\uFF08\u632F\u52A8\u673A\u68B0\uFF09
TaperedRollerBearing=\u5706\u9525\u6EDA\u5B50\u8F74\u627F
3SingleRowTaperedRollerBearingType3=\u5355\u5217\u5706\u9525\u6EDA\u5B50\u8F74\u627F3\u578B
35DoubleInnerRingDoubleRowTaperedRollerBearingType35=\u53CC\u5185\u5708\u53CC\u5217\u5706\u9525\u6EDA\u5B50\u8F74\u627F35\u578B
37DoubleOuterRingDoubleRowTaperedRollerBearingsModel37=\u53CC\u5916\u5708\u53CC\u5217\u5706\u9525\u6EDA\u5B50\u8F74\u627F37\u578B
38FourRowTaperedRollerBearingType38=\u56DB\u5217\u5706\u9525\u6EDA\u5B50\u8F74\u627F38\u578B
TSTSTypeSingleRowBritishTaperedRollerBearing=TS\u578B\u5355\u5217\u82F1\u5236\u5706\u9525\u6EDA\u5B50\u8F74\u627F
TSFTSFSingleRowEnglishTaperedRollerBearingWithFlangeOuterRing=TSF\u5E26\u51F8\u7F18\u5916\u5708\u7684\u5355\u5217\u82F1\u5236\u5706\u9525\u6EDA\u5B50\u8F74\u627F
TDOTDODoubleRowOuterRingBritishTaperedRollerBearing=TDO\u53CC\u5217\u5916\u5708\u82F1\u5236\u5706\u9525\u6EDA\u5B50\u8F74\u627F
TDITDIDoubleRRowInnerRingBritishTaperedRollerBearing=TDI\u53CC\u5217\u5185\u5708\u82F1\u5236\u5706\u9525\u6EDA\u5B50\u8F74\u627F
2TS-DMFrontMountingOf2TS-DMTwoSingleRowBearingCombinations=2TS-DM\u4E24\u4E2A\u5355\u5217\u8F74\u627F\u7EC4\u5408\u6B63\u9762\u5B89\u88C5
2TS-IM2TS-IMTwoSingleRowBearingCombinationReverseInstallation=2TS-IM\u4E24\u4E2A\u5355\u5217\u8F74\u627F\u7EC4\u5408\u53CD\u9762\u5B89\u88C5
2TS-TMInstallationOf2TS-TMTwoSingleRowBearingsInSeries=2TS-TM\u4E24\u4E2A\u5355\u5217\u8F74\u627F\u7EC4\u5408\u4E32\u8054\u5B89\u88C5
TwoDoubleRacewayInnerRingsOfTQOFourRowEnglishTaperedRollerBearing=TQO\u56DB\u5217\u82F1\u5236\u5706\u9525\u6EDA\u5B50\u8F74\u627F\u4E24\u4E2A\u53CC\u6EDA\u9053\u5185\u5708
TQITSFourRowEnglishTaperedRollerBearingTwoDoubleRollToOuterRing=TQITS\u56DB\u5217\u82F1\u5236\u5706\u9525\u6EDA\u5B50\u8F74\u627F\u4E24\u4E2A\u53CC\u6EDA\u5230\u5916\u5708
JJSeriesMetricTaperedRollerBearings=J\u7CFB\u5217\u516C\u5236\u5316\u7684\u5706\u9525\u6EDA\u5B50\u8F74\u627F
EEEESeriesTaperedRollerBearingWithInnerRingRibAndClosedGuide=EE\u7CFB\u5217\u5185\u5708\u6321\u8FB9\u5C01\u95ED\u5F15\u5BFC\u5706\u9525\u6EDA\u5B50\u8F74\u627F
CC-CC-SeriesCarburizedSteelBearing=CC-\u7CFB\u5217\u6E17\u78B3\u94A2\u8F74\u627F
HEHESeriesHighEfficiencyBearing=HE\u7CFB\u5217\u9AD8\u6548\u8F74\u627F
EXNewGenerationOfEXUpgradeProducts=EX\u65B0\u4E00\u4EE3\u5347\u7EA7\u4EA7\u54C1
CylindricalRollerBearing=\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
TypeN=N\u578B
TypeNH=NH\u578B
TypeNF=NF\u578B
TypeNU=NU\u578B
TypeNJ=NJ\u578B
TypeNUP=NUP\u578B
TypeRNU=RNU\u578B
TypeRN=RN\u578B
TypeNN=NN\u578B
TypeNN...W33=NN...W33\u578B
TypeNN...K=NN...K\u578B
TypeNN...K/W33=NN...K/W33\u578B
TypeNNU=NNU\u578B
TypeNNU...K=NNU...K\u578B
TypeNNU...K/W33=NNU...K\uFF0FW33\u578B
TypeFC=FC\u578B
TypeFCD=FCD\u578B
TypeFCDP=FCDP\u578B
TypeNB=NB\u578B
TypeNFP=NFP\u578B
TypeNJP=NJP\u578B
TypeNCL=NCL\u578B
TypeNNUP=NNUP\u578B
TypeNNP=NNP\u578B
TypeNNF=NNF\u578B
TypeNNQB=NNQB\u578B
TypeNNTB=NNTB\u578B
TypeNNTUP=NNTUP\u578B
TypeNNQP=NNQP\u578B
SingleRowFullRollerCylindricaRollerBearing=\u5355\u5217\u6EE1\u6EDA\u5B50\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
DoubleRowFullRollerCylindricalRollerBearing=\u53CC\u5217\u6EE1\u6EDA\u5B50\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
Multi-rowFullRollerCylindricalRollerBearing=\u591A\u5217\u6EE1\u6EDA\u5B50\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
SplitCylindricalRollerBearing=\u5256\u5206\u5F0F\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
NCLAndSLType=NCL\u548CSL\u578B
TDSeriesLongLifeCylindricalRollerBearing=TD\u7CFB\u5217\u957F\u5BFF\u547D\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
NFLSeriesCylindricalRollerBearing=NFL\u7CFB\u5217\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
TMSeriesGearboxBearing=TM\u7CFB\u5217\u53D8\u901F\u7BB1\u8F74\u627F
NNFLSeriesDoubleRowCylindricalRollerBearing=NNFL\u7CFB\u5217\u53CC\u5217\u56ED\u67F1\u6EDA\u5B50\u8F74\u627F
BSeriesBackBackedBearing=B\u7CFB\u5217\u80CC\u886C\u8F74\u627F
TypeNUHJ=NUHJ\u578B
HCHybridInsulatedBearing=HC\u6DF7\u5408\u7EDD\u7F18\u8F74\u627F
ThrustBallBearing=\u63A8\u529B\u7403\u8F74\u627F
ThrustBallBearing=\u63A8\u529B\u7403\u8F74\u627F
BidirectionalThrustBallBearing=\u53CC\u5411\u63A8\u529B\u7403\u8F74\u627F
ThrustBallBearingWithSphericalRing=\u5E26\u7403\u9762\u5EA7\u5708\u7684\u63A8\u529B\u7403\u8F74\u627F
BidirectionalThrustBallBearingWithSphericalRing=\u5E26\u7403\u9762\u5EA7\u5708\u7684\u53CC\u5411\u63A8\u529B\u7403\u8F74\u627F
ThrustBallBearingUnit=\u63A8\u529B\u7403\u7EC4\u4EF6
DeepGrooveBallBearing=\u6DF1\u6C9F\u7403\u8F74\u627F
Series60DeepGrooveBallBearings=60\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series62DeepGrooveBallBearings=62\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series63DeepGrooveBallBearings=63\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series64DeepGrooveBallBearings=64\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series617DeepGrooveBallBearings=617\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series618DeepGrooveBallBearings=618\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series619DeepGrooveBallBearings=619\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series622DeepGrooveBallBearings=622\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series630DeepGrooveBallBearings=630\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series160DeepGrooveBallBearings=160\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series161DeepGrooveBallBearings=161\u7CFB\u5217\u666E\u901A\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
6/Non-standardd=6/:\u975E\u6807\u51C6\u5185\u5F84
Series40DeepGrooveBallBearings=40\u7CFB\u5217\u666E\u901A\u53CC\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series42DeepGrooveBallBearings=42\u7CFB\u5217\u666E\u901A\u53CC\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series43DeepGrooveBallBearings=43\u7CFB\u5217\u666E\u901A\u53CC\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
Series44DeepGrooveBallBearings=44\u7CFB\u5217\u666E\u901A\u53CC\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
4/Non-standardd=4/:\u975E\u6807\u51C6\u5185\u5F84
RInchSeriesDeepGrooveBallBearings=R\u82F1\u5236\u7CFB\u5217\u5355\u5217\u6DF1\u6C9F\u7403\u8F74\u627F
AngularContactBallBearings=\u89D2\u63A5\u89E6\u7403\u8F74\u627F
SingleRowAngularContactBearingType7=\u5355\u5217\u89D2\u63A5\u89E6\u7403\u8F74\u627F7\u578B
OuterRingSeparationAngularContactBallBearingTypeS7=\u5916\u5708\u5206\u79BB\u89D2\u63A5\u89E6\u7403\u8F74\u627FS7\u578B
InneRingSeparationAngularContactBallBearingTypeSN7=\u5185\u5708\u5206\u79BB\u89D2\u63A5\u89E6\u7403\u8F74\u627FSN7\u578B
AngularContactBallBearingB78WithLockInInnerRing=\u9501\u53E3\u5728\u5185\u5708\u89D2\u63A5\u89E6\u7403\u8F74\u627FB78
DoubleHalfOuterRingFourPointContactBallBearingQJF=\u53CC\u534A\u5916\u5708\u56DB\u70B9\u63A5\u89E6\u7403\u8F74\u627FQJF
DoubleHalfOuterRingThreePointContactBallBearingQJT=\u53CC\u534A\u5916\u5708\u4E09\u70B9\u63A5\u89E6\u7403\u8F74\u627FQJT
FourPointContactBallBearingQJ=\u56DB\u70B9\u63A5\u89E6\u7403\u8F74\u627FQJ
DoubleHalfInnerRingThreePointContactBallBearingQJS=\u53CC\u534A\u5185\u5708\u4E09\u70B9\u63A5\u89E6\u7403\u8F74\u627FQJS
32,33SeriesDoubleRowAngularContactBalBearings=32\u300133\u7B49\u7CFB\u5217\u53CC\u5217\u89D2\u63A5\u89E6\u7403\u8F74\u627F
TypeHP=HP\u578B
CeramicAngularContactBallBearing=\u9676\u74F7\u89D2\u63A5\u7403\u8F74\u627F
AutomobileSiliconeFanDoubleRowAngularContactBallBearings=DC\u7CFB\u5217\u53CC\u5217\u89D2\u63A5\u89E6\u7403\u8F74\u627F
AutomobileGeneratorDoubleRowAngularContactBallBearings=SA\u7CFB\u5217\u53CC\u5217\u89D2\u63A5\u89E6\u7403\u8F74\u627F
AutomobileGearboxDoubleRowAngularContactBallBearings=TM\u7CFB\u5217\u53CC\u5217\u89D2\u63A5\u89E6\u7403\u8F74\u627F
HCHybridInsulatedBearing=HC\u6DF7\u5408\u7EDD\u7F18\u8F74\u627F
ThrustCRB=\u63A8\u529B\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
One-waySingle-rowThrustCRB=\u5355\u5411\u5355\u5217\u63A8\u529B\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
Double-rowOrmulti-rowCRBWithOne-wayThrust=\u53CC\u5217\u6216\u591A\u5217\u5355\u5411\u63A8\u529B\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
BidirectionalThrustCRB=\u53CC\u5411\u63A8\u529B\u5706\u67F1\u6EDA\u5B50\u8F74\u627F
One-waySingleRowThrustCRBAndCageAssembly=\u5355\u5411\u5355\u5217\u63A8\u529B\u5706\u67F1\u6EDA\u5B50\u548C\u4FDD\u6301\u67B6\u7EC4\u4EF6
CRBAndCageAssemblyWithTwoOrMoreRowsOfUnidirectionalthrust=\u53CC\u5217\u6216\u591A\u5217\u5355\u5411\u63A8\u529B\u5706\u67F1\u6EDA\u5B50\u548C\u4FDD\u6301\u67B6\u7EC4\u4EF6
RadialNeedleRollerBearing=\u5411\u5FC3\u6EDA\u9488\u8F74\u627F
1SeriesDrawnCupHK(perforatedType)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708HK\u578B\uFF08\u7A7F\u5B54\u578B\uFF09
1SeriesDrawnCupJ(imperialPerforatedType)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708J\u578B(\u82F1\u5236\u7A7F\u5B54\u578B)
1SeriesDrawnCupBK(sealingType)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708BK\u578B\uFF08\u5C01\u53E3\u578B\uFF09
1SeriesDrawnCupMJ(imperialSealingType)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708MJ\u578B\uFF08\u82F1\u5236\u5C01\u53E3\u578B\uFF09
1SeriesDrawnCupF(perforatedTipFullNeedle,RibLimit)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708F\u578B\uFF08\u7A7F\u5B54\u5C16\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
1SeriesDrawnCupB(imperialPerforatedTipFullNeedle,RibLimit)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708B\u578B\uFF08\u82F1\u5236\u7A7F\u5B54\u9488\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
1SeriesDrawnCupMF(sealingTipFullNeedle,RibLimit)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708MF\u578B\uFF08\u5C01\u53E3\u5C16\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
1SeriesDrawnCupM(imperialSealingTipfullNeedle,RibLimit)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708M\u578B\uFF08\u82F1\u5236\u5C01\u53E3\u5C16\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
1SeriesDrawnCupFY(perforatedFlatHeadFullNeedleGreaseLimit)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708FY\u578B\uFF08\u7A7F\u5B54\u5E73\u5934\u6EE1\u9488\u6CB9\u8102\u9650\u4F4D\uFF09
1SeriesDrawnCupMFY(sealingFlatHeadFullNeedleGreaseLimit)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708MFY\u578B\uFF08\u5C01\u53E3\u5E73\u5934\u6EE1\u9488\u6CB9\u8102\u9650\u4F4D\uFF09
1SeriesDrawnCupHFtype(needleClutch)=1\u7CFB\u51B2\u538B\u5916\u5708HF\u578B\uFF08\u6EDA\u9488\u79BB\u5408\u5668\uFF09
1SeriesDrawnCupHFL(needleClutchAssembly)=1\u7CFB\u5217\u51B2\u538B\u5916\u5708HFL\u578B\uFF08\u6EDA\u9488\u79BB\u5408\u5668\u7EC4\u4EF6\uFF09
2SeriesDrawnCupHKH(perforatedType)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708HKH\u578B\uFF08\u7A7F\u5B54\u578B\uFF09
2SeriesDrawnCupJH(imperialPerforatedType)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708JH\u578B(\u82F1\u5236\u7A7F\u5B54\u578B)
2SeriesDrawnCupBKH(sealingType)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708BKH\u578B\uFF08\u5C01\u53E3\u578B\uFF09
2SeriesDrawnCupMJH(imperialSealingType)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708MJH\u578B\uFF08\u82F1\u5236\u5C01\u53E3\u578B\uFF09
2SeriesDrawnCupFH(sealingTipFullNeedle,RibLimit)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708FH\u578B\uFF08\u7A7F\u5B54\u5C16\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
2SeriesDrawnCupBH(imperialSealingTipFullNeedle,RibLimit=2\u7CFB\u5217\u51B2\u538B\u5916\u5708BH\u578B\uFF08\u82F1\u5236\u7A7F\u5B54\u9488\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
2SeriesDrawnCupMFH(sealingtipFullNeedle,RibLimit)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708MFH\u578B\uFF08\u5C01\u53E3\u5C16\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
2SeriesDrawnCupMH(imperialSealingTipFullNeedle,RibLimit=2\u7CFB\u5217\u51B2\u538B\u5916\u5708MH\u578B\uFF08\u82F1\u5236\u5C01\u53E3\u5C16\u5934\u6EE1\u9488\u3001\u6321\u8FB9\u9650\u4F4D\uFF09
2SeriesDrawnCupFYH(perforatedFlatHeadFullNeedleGreaseLimit)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708FYH\u578B\uFF08\u7A7F\u5B54\u5E73\u5934\u6EE1\u9488\u6CB9\u8102\u9650\u4F4D\uFF09
2SeriesDrawnCupMFYH(sealingFlatHeadFullNeedleGreaseLimit)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708MFYH\u578B\uFF08\u5C01\u53E3\u5E73\u5934\u6EE1\u9488\u6CB9\u8102\u9650\u4F4D\uFF09
2SeriesDrawnCupHFH(needleClutch)=2\u7CFB\u51B2\u538B\u5916\u5708HFH\u578B\uFF08\u6EDA\u9488\u79BB\u5408\u5668\uFF09
2SeriesDrawnCupHFLH(needleClutchAssembly)=2\u7CFB\u5217\u51B2\u538B\u5916\u5708HFLH\u578B\uFF08\u6EDA\u9488\u79BB\u5408\u5668\u7EC4\u4EF6\uFF09
EntityNAType(ordinaryType)=\u5B9E\u4F53NA\u578B\uFF08\u666E\u901A\u578B\uFF09
EntityRNAType(withoutInnerCircle)=\u5B9E\u4F53RNA\u578B\uFF08\u65E0\u5185\u5708\uFF09
PhysicalNAVType(FullNeedle)=\u5B9E\u4F53NAV\u578B\uFF08\u6EE1\u9488\uFF09
SolidRNAVType(noInnerRing,FullNeedle)=\u5B9E\u4F53RNAV\u578B\uFF08\u65E0\u5185\u5708\uFF0C\u6EE1\u9488\uFF09
EntityNAOType(outerRingWithoutRibs)=\u5B9E\u4F53NAO\u578B\uFF08\u5916\u5708\u65E0\u6321\u8FB9\uFF09
SolidRNAOType(noInnerRing,NoRibs)=\u5B9E\u4F53RNAO\u578B\uFF08\u65E0\u5185\u5708\uFF0C\u65E0\u6321\u8FB9\uFF09
SolidRNAPType(withoutInnerRing,withFlatWasher)=\u5B9E\u4F53RNAP\u578B\uFF08\u65E0\u5185\u5708\uFF0C\u5E26\u5E73\u57AB\u5708\uFF09
SolidNAVPType(withFlatWasher,FullNeedle)=\u5B9E\u4F53NAVP\u578B\uFF08\u5E26\u5E73\u57AB\u5708\uFF0C\u6EE1\u9488\uFF09
SolidRNAVPType(withoutInnerRing,WithFlatWasher,FullNeedle)=\u5B9E\u4F53RNAVP\u578B\uFF08\u65E0\u5185\u5708\uFF0C\u5E26\u5E73\u57AB\u5708\uFF0C\u6EE1\u9488\uFF09
EntityNAOV(ORWithoutRibs,IRWithDoubleRibs,FullStitches)=\u5B9E\u4F53NAOV\u578B\uFF08\u5916\u5708\u53BB\u6321\u8FB9\uFF0C\u5185\u5708\u53CC\u6321\u8FB9\uFF0C\u6EE1\u9488\uFF09
K-shapedRadialNeedleRollerAndCageAssembly(commonAssembly)=K\u578B\u5411\u5FC3\u6EDA\u9488\u548C\u4FDD\u6301\u67B6\u7EC4\u4EF6\uFF08\u901A\u7528\u7EC4\u4EF6\uFF09
KZKTypeRadialNeedleRollerAndCageAssembly(forCrankPinSupport)=KZK\u578B\u5411\u5FC3\u6EDA\u9488\u548C\u4FDD\u6301\u67B6\u7EC4\u4EF6\uFF08\u66F2\u67C4\u9500\u652F\u627F\u7528\uFF09
KBKRadialNeedleRollerAndCageAssembly(forPistonPinSupport)=KBK\u578B\u5411\u5FC3\u6EDA\u9488\u548C\u4FDD\u6301\u67B6\u7EC4\u4EF6\uFF08\u6D3B\u585E\u9500\u652F\u627F\u7528\uFF09
ThrustNeedleRollerBearing=\u63A8\u529B\u6EDA\u9488\u8F74\u627F
AXKThrustneedlerollerandcageassembly=AXK\u578B\uFF08\u63A8\u529B\u6EDA\u9488\u7EC4\u4EF6\uFF09
AXWThrustneedlerollerbearing(withcentersleeve)=AXW\u578B\uFF08\u63A8\u529B\u6EDA\u9488\u8F74\u627F\u5E26\u4E2D\u5FC3\u5957\uFF09
AXThrustneedlerollerbearing(withtwowashers)=AX\u578B\uFF08\u63A8\u529B\u6EDA\u9488\u8F74\u627F\u5E26\u4E0A\u4E0B\u57AB\u5708\uFF09
SAXThrustneedlerollerbearing(withonewasher)=SAX\u578B\uFF08\u63A8\u529B\u6EDA\u9488\u8F74\u627F\u5E26\u4E0A\u6216\u4E0B\u57AB\u5708\uFF09
ThrustAngularContactBallBearing=\u63A8\u529B\u89D2\u63A5\u89E6\u7403\u8F74\u627F
OneWayThrustAngularContactBallBearing=\u5355\u5411\u63A8\u529B\u89D2\u63A5\u89E6\u7403\u8F74\u627F
23SeriesBidirectionalThrustAngularContactBallBearing=23\u7CFB\u5217\u53CC\u5411\u63A8\u529B\u89D2\u63A5\u89E6\u7403\u8F74\u627F
KOW=KOW
TaperRollerThrustBearing=\u63A8\u529B\u5706\u9525\u6EDA\u5B50\u8F74\u627F
One-wayThrustTaperedRollerBearings=\u5355\u5411\u63A8\u529B\u5706\u9525\u6EDA\u5B50\u8F74\u627F
DoubleThrustTaperedRollerBearings=\u53CC\u5411\u63A8\u529B\u5706\u9525\u6EDA\u5B50\u8F74\u627F
ThrustSphericalRollerBearing=\u63A8\u529B\u8C03\u5FC3\u6EDA\u5B50\u8F74\u627F
Series292=292\u7CFB\u5217
Series293=293\u7CFB\u5217
Series294=294\u7CFB\u5217
WaterPumpBearing=\u6C34\u6CF5\u8F74\u627F
TypeWB(doubleRowBall)=WB\u578B
TypeWR(leftRoller-rightBall)=WR\u578B
TypeWBBR(doubleRowBallSingleRowRoller)=WBBR\u578B
TypeWBRR(singleRowBallDoubleRowRoller)=WBRR\u578B
TypeWZ(leftBall-rightRoller)=WZ\u578B
TensionWheelBearing=\u5F20\u7D27\u8F6E\u8F74\u627F
TypeBT=BT\u578B
TypeBTB=BTB\u578B
TypeZL=ZL\u578B
TypeDL=DL\u578B
TypeZD=ZD\u578B
TypeDD=DD\u578B
TypeZZ=ZZ\u578B
HubBearing=\u8F6E\u6BC2\u8F74\u627F
TypeDAC(FirstGenerationHubBearingWithDoubleRowBallStructure)=DAC\u578B
TypeDACF(SecondGenerationHubBearingWithDoubleRowBallStructure)=DACF\u578B
TypeDU(FirstGenerationHubBearingWithDoubleRowTaperedStructure)=DU\u578B
TypeDUF(SecondGenerationHubBearingWithDoubleRowTaperedStructure)=DUF\u578B
TypeDAC2F(ThirdGenerationHubBearingWithDoubleRowBallStructure)=DAC2F\u578B
TypeDUC2F(ThirdGenerationHubBearingWithDoubleRowTaperedStructure)=DUC2F\u578B
AutomotiveElectromagneticClutchBearing=\u7535\u78C1\u79BB\u5408\u5668\u8F74\u627F
TypeDA=DA\u578B
ExternalSphericalBallBearing=\u5916\u7403\u9762\u7403\u8F74\u627F
TypeUCExternalSphericalBallBearingsWithTopWire=UC\u578B\uFF08\u5E26\u9876\u4E1D\u5916\u7403\u9762\u7403\u8F74\u627F\uFF09
TypeUELExternalSphericalBallbearingWithEccentricSleevee=UEL\u578B\uFF08\u5E26\u504F\u5FC3\u5957\u5916\u7403\u9762\u7403\u8F74\u627F\uFF09
TypeUKExternalSphericalBallBearingsWithTaperedHoles=UK\u578B\uFF08\u6709\u5706\u9525\u5B54\u5916\u7403\u9762\u7403\u8F74\u627F\uFF09
TypeUBOneEndFlatHeadOuterSphericalBallBearingWithTopWire=UB\u578B\uFF08\u4E00\u7AEF\u5E73\u5934\u5E26\u9876\u4E1D\u5916\u7403\u9762\u7403\u8F74\u627F\uFF09
TypeUELightDutyOuterSphericalBallBearingsWithWccentricSleeve=UE\u578B\uFF08\u8F7B\u578B\u5E26\u504F\u5FC3\u5957\u5916\u7403\u9762\u7403\u8F74\u627F\uFF09
TypeUDFlatHeadOuterBphericalBallBearingsAtBothEnds=UD\u578B\uFF08\u4E24\u7AEF\u5E73\u5934\u5916\u7403\u9762\u7403\u8F74\u627F\uFF09
JointBearing=\u5173\u8282\u8F74\u627F
TypeGECentripetalJointBearing=GE\u578B\u5411\u5FC3\u5173\u8282\u8F74\u627F
TypeGACAngularContactJointBearing=GAC\u578B\u89D2\u63A5\u89E6\u5173\u8282\u8F74\u627F
TypeGXThrustJointBearing=GX\u578B\u63A8\u529B\u5173\u8282\u8F74\u627F
TypeSIAssemblyTypeStemEndJointBearingWithInternalThread=SI\u578B\u5185\u87BA\u7EB9\u7EC4\u88C5\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSAAssemblyRodEndJointBearingWithExternalThread=SA\u578B\u5916\u87BA\u7EB9\u7EC4\u88C5\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSIBIntegralTypeRodEndJointBearingWithInternalThread=SIB\u578B\u5185\u87BA\u7EB9\u6574\u4F53\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSABIntegralTypeRodEndJointBearingWithExternalThread=SAB\u578B\u5916\u87BA\u7EB9\u6574\u4F53\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSILAssemblyRodEndJointBearingWithLeftInternalThread=SIL\u578B\u5DE6\u65CB\u5185\u87BA\u7EB9\u7EC4\u88C5\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSALAssemblyTypeRodEndJointBearingWithLeft-handExternalThread=SAL\u578B\u5DE6\u65CB\u5916\u87BA\u7EB9\u7EC4\u88C5\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSILBIntegralRodEndJointBearingWithLeftInternalThread=SILB\u578B\u5DE6\u65CB\u5185\u87BA\u7EB9\u6574\u4F53\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSALBIntegralRodEndJointBearingWithLeftExternalThread=SALB\u578B\u5DE6\u65CB\u5916\u87BA\u7EB9\u6574\u4F53\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSQBentRodTypeBallHeadRodEndJointBearing=SQ\u578B\u5F2F\u6746\u578B\u7403\u5934\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSQZStraightRodTypeBallHeadRodEndJointBearing=SQZ\u578B\u76F4\u6746\u578B\u7403\u5934\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSQDSingleRodTypeBallHeadRodEndJointBearing=SQD\u578B\u5355\u6746\u578B\u7403\u5934\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSQLLeft-handedCurvedRodTypeBallHeadRodEndJointBearing=SQL\u578B\u5DE6\u65CB\u5F2F\u6746\u578B\u7403\u5934\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSQLDLeft-handedSingle-RodBallHead=SQLD\u578B\u5DE6\u65CB\u5355\u6746\u578B\u7403\u5934\u6746\u7AEF\u5173\u8282\u8F74\u627F
TypeSKRodEndJointBearingWithCylindricalWelding(Cylindrical)=SK\u578B\u5E26\u5706\u67F1\u710A\u63A5\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F\uFF08\u5706\u67F1\u578B\uFF09
TypeSFWeldedRodEndJointBearingWithFlatBase(SquareType)=SF\u578B\u5E26\u5E73\u5E95\u5EA7\u710A\u63A5\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F\uFF08\u65B9\u578B\uFF09
TypeSIRRod-EndArticulatedBearingWithLatch=SIR\u578B\u5E26\u9501\u53E3\u578B\u6746\u7AEF\u5173\u8282\u8F74\u627F
ForkliftBearing=\u53C9\u8F66\u8F74\u627F
TypeMGMastGuideBearing=MG\u578B\u53C9\u8F66\u95E8\u67B6\u6EDA\u8F6E\u8F74\u627F
TypeCGChainGuideBearings=CG\u578B\u53C9\u8F66\u95E8\u67B6\u94FE\u8F6E\u8F74\u627F
TypeSRSideRollerBearings=SR\u578B\u53C9\u8F66\u95E8\u67B6\u4FA7\u5411\u6EDA\u8F6E
TypeCRARollerStructure(MainRoller)+RollerBearing(SideRoller)=CRA\u578B\u4E3B\u6EDA\u8F6E\u8F74\u627F\u4E3A\u6EDA\u5B50\u7ED3\u6784\u4FA7\u6EDA\u8F6E\u4E3A\u6EDA\u8F6E\u8F74\u627F
TypeCRBRollerStructure(MainRoller)+SliderTypeSlidingBearing(SideRoller)=CRB\u578B\u4E3B\u6EDA\u8F6E\u8F74\u627F\u4E3A\u6EDA\u5B50\u7ED3\u6784\u4FA7\u6EDA\u8F6E\u4E3A\u6ED1\u5757\u5F0F\u7684\u6ED1\u52A8\u8F74\u627F
TypeCRCRollerStructure(MainRoller)WithoutSideRoller=CRC\u578B\u4E3B\u6EDA\u8F6E\u8F74\u627F\u4E3A\u6EDA\u5B50\u7ED3\u6784\u65E0\u4FA7\u6EDA\u8F6E\u3001\u6ED1\u8F6E\u7684\u5176\u4ED6\u5F62\u5F0F
TypeCBABallStructure(MainRoller)+RollerBearing(SideRoller)=CBA\u578B\u4E3B\u6EDA\u8F6E\u8F74\u627F\u4E3A\u94A2\u7403\u7ED3\u6784\u4FA7\u6EDA\u8F6E\u4E3A\u6EDA\u8F6E\u8F74\u627F
TypeCBBBallStructure(MainRoller)+SliderTypeSlidingBearing(SideRoller)=CBB\u578B\u4E3B\u6EDA\u8F6E\u8F74\u627F\u4E3A\u94A2\u7403\u7ED3\u6784\u4FA7\u6EDA\u8F6E\u4E3A\u6ED1\u5757\u5F0F\u7684\u6ED1\u52A8\u8F74\u627F
TypeCBCBallStructure(MainRoller)WithoutSideRoller=CBC\u578B\u4E3B\u6EDA\u8F6E\u8F74\u627F\u4E3A\u94A2\u7403\u7ED3\u6784\u65E0\u4FA7\u6EDA\u8F6E\u3001\u6ED1\u8F6E\u7684\u5176\u4ED6\u5F62\u5F0F
SlewingBearingAndWindPowerBearing=\u56DE\u8F6C\u652F\u627F\u4E0E\u98CE\u7535\u8F74\u627F
Type010ToothlessSingle-rowFour-pointcontactBallStyle=010\u578B\u65E0\u9F7F\u5F0F\u5355\u6392\u56DB\u70B9\u63A5\u89E6\u7403\u8F74\u627F
Type020ToothlessDoubleRejectionBallStyle=020\u578B\u65E0\u9F7F\u5F0F\u53CC\u6392\u5F02\u5F84\u7403\u8F74\u627F
Type110ToothlessSingleRowCrossRollerStyle=110\u578B\u65E0\u9F7F\u5F0F\u5355\u6392\u4EA4\u53C9\u6EDA\u5B50\u8F74\u627F
Type130ToothlessThreeRowsOfRollers=130\u578B\u65E0\u9F7F\u5F0F\u4E09\u6392\u6EDA\u5B50\u8F74\u627F
Type011SmallMeshModulusOfExternalTeethSingle-row4Pstyle=011\u578B\u5916\u9F7F\u5C0F\u6A21\u6570\u5F0F\u5355\u6392\u56DB\u70B9\u63A5\u89E6\u7403\u8F74\u627F
Type012LargeMeshModulusOfExternalTeethSingle-row4Pstyle=012\u578B\u5916\u9F7F\u5927\u6A21\u6570\u5F0F\u5355\u6392\u56DB\u70B9\u63A5\u89E6\u7403\u8F74\u627F
Type013SmallMeshingModulusOfInnerTeethSingle-row4Pstyle=013\u578B\u5185\u9F7F\u5C0F\u6A21\u6570\u5F0F\u5355\u6392\u56DB\u70B9\u63A5\u89E6\u7403\u8F74\u627F
Type014LargeMeshingModulusOfInnerTeethSingle-row4Pstyle=014\u578B\u5185\u9F7F\u5927\u6A21\u6570\u5F0F\u5355\u6392\u56DB\u70B9\u63A5\u89E6\u7403\u8F74\u627F
Type021SmallMeshModulusOfExternalTeethDoubleRejectionBallStyle=021\u578B\u5916\u9F7F\u5C0F\u6A21\u6570\u5F0F\u53CC\u6392\u5F02\u5F84\u7403\u8F74\u627F
Type022LargeMeshModulusOfExternalTeethDoubleRejectionBallStyle=022\u578B\u5916\u9F7F\u5927\u6A21\u6570\u5F0F\u53CC\u6392\u5F02\u5F84\u7403\u8F74\u627F
Type023SmallMeshingModulusOfInnerTeethDoubleRejectionBallStyle=023\u578B\u5185\u9F7F\u5C0F\u6A21\u6570\u5F0F\u53CC\u6392\u5F02\u5F84\u7403\u8F74\u627F
Type024LargeMeshingModulusOfInnerTeethDoubleRejectionBallStyle=024\u578B\u5185\u9F7F\u5927\u6A21\u6570\u5F0F\u53CC\u6392\u5F02\u5F84\u7403\u8F74\u627F
Type111SmallMeshModulusOfExternalTeethSingleRowCrossRollerStyle=111\u578B\u5916\u9F7F\u5C0F\u6A21\u6570\u5F0F\u5355\u6392\u4EA4\u53C9\u6EDA\u5B50\u8F74\u627F
Type112LargeMeshModulusOfExternalTeethSingleRowCrossRollerStyle=112\u578B\u5916\u9F7F\u5927\u6A21\u6570\u5F0F\u5355\u6392\u4EA4\u53C9\u6EDA\u5B50\u8F74\u627F
Type113SmallMeshingModulusOfInnerTeethSingleRowCrossRollerStyle=113\u578B\u5185\u9F7F\u5C0F\u6A21\u6570\u5F0F\u5355\u6392\u4EA4\u53C9\u6EDA\u5B50\u8F74\u627F
Type114LargeMeshingModulusOfInnerTeethSingleRowCrossRollerStyle=114\u578B\u5185\u9F7F\u5927\u6A21\u6570\u5F0F\u5355\u6392\u4EA4\u53C9\u6EDA\u5B50\u8F74\u627F
Type131SmallMeshModulusOfExternalTeethThreeRowsOfRollers=131\u578B\u5916\u9F7F\u5C0F\u6A21\u6570\u5F0F\u4E09\u6392\u6EDA\u5B50\u8F74\u627F
Type132LargeMeshModulusOfExternalTeethThreeRowsOfRollers=132\u578B\u5916\u9F7F\u5927\u6A21\u6570\u5F0F\u4E09\u6392\u6EDA\u5B50\u8F74\u627F
Type133SmallMeshingModulusOfInnerTeethThreeRowsOfRollers=133\u578B\u5185\u9F7F\u5C0F\u6A21\u6570\u5F0F\u4E09\u6392\u6EDA\u5B50\u8F74\u627F
Type134LargeMeshingModulusOfInnerTeethThreeRowsOfRollers=134\u578B\u5185\u9F7F\u5927\u6A21\u6570\u5F0F\u4E09\u6392\u6EDA\u5B50\u8F74\u627F
Type030ToothlessDoubleRowFourPointContactBallStyle=030\u578B\u65E0\u9F7F\u5F0F\u53CC\u6392\u56DB\u70B9\u63A5\u89E6\u8F74\u627F
Type031SmallMeshModulusOfExternalTeethdoublerow4Pstyle=031\u578B\u5916\u9F7F\u5C0F\u6A21\u6570\u5F0F\u53CC\u6392\u56DB\u70B9\u63A5\u89E6\u8F74\u627F
Type032LargeMeshModulusOfExternalTeethdoublerow4Pstyle=032\u578B\u5916\u9F7F\u5927\u6A21\u6570\u5F0F\u53CC\u6392\u56DB\u70B9\u63A5\u89E6\u8F74\u627F
Type033SmallMeshingModulusOfInnerTeethdoublerow4Pstyle=033\u578B\u5185\u9F7F\u5C0F\u6A21\u6570\u5F0F\u53CC\u6392\u56DB\u70B9\u63A5\u89E6\u8F74\u627F
Type034LargeMeshingModulusOfInnerTeethdoublerow4Pstyle=034\u578B\u5185\u9F7F\u5927\u6A21\u6570\u5F0F\u53CC\u6392\u56DB\u70B9\u63A5\u89E6\u8F74\u627F
UnilateralBearing=\u5355\u5411\u8F74\u627F
TypeDXZ(OneRowNeedleAndOneRowBall)=DXZ\u578B\uFF08\u4E00\u5217\u6EDA\u9488\u4E00\u5217\u94A2\u7403\uFF09
TypeDX(SeparatedOuterRingType)=DX\u578B\uFF08\u5916\u5708\u5206\u79BB\u578B\uFF09
TypeOW(OneRowAbnormityRollerAndOneRowBall)=OW\u578B\uFF08\u4E00\u5217\u5F02\u5F62\u6EDA\u5B50\u4E00\u5217\u94A2\u7403\uFF09
TypeNB(SingleShortNeedle)=NB\u578B\uFF08\u5355\u5217\u77ED\u6EDA\u9488\uFF09
TypeBB(SingleLongNeedle)=BB\u578B\uFF08\u5355\u5217\u957F\u6EDA\u9488\uFF09
TypeCSK(SingleAbnormityRoller)=CSK\u578B\uFF08\u5355\u5217\u5F02\u5F62\u6EDA\u5B50\uFF09
ClutchReleaseBearingForAutomobiles=\u6C7D\u8F66\u79BB\u5408\u5668\u8F74\u627F
TypeTPush-styleClutchReleaseBearing=T\u578B\uFF08\u63A8\u5F0F\u79BB\u5408\u5668\u5206\u79BB\u8F74\u627F\uFF09
TypeWTNon-aligningPush-styleOuterRingRotaryClutchReleaseBearingUnit=WT\u578B\uFF08\u975E\u8C03\u5FC3\u63A8\u5F0F\u5916\u5708\u65CB\u8F6C\u7684\u79BB\u5408\u5668\u5206\u79BB\u8F74\u627F\u5355\u5143\uFF09
TypeNTNon-aligningPush-styleInnerRingRotaryClutchReleaseBearingUnit=NT\u578B\uFF08\u975E\u8C03\u5FC3\u63A8\u5F0F\u5185\u5708\u65CB\u8F6C\u7684\u79BB\u5408\u5668\u5206\u79BB\u8F74\u627F\u5355\u5143\uFF09
TypeNLNon-aligningDraw-styleClutchReleaseBearingUnit=NL\u578B\uFF08\u975E\u8C03\u5FC3\u62C9\u5F0F\u79BB\u5408\u5668\u5206\u79BB\u8F74\u627F\u5355\u5143\uFF09
TypeCTSelf-aligningPush-styleClutchReleaseBearingUnit=CT\u578B\uFF08\u81EA\u52A8\u8C03\u5FC3\u63A8\u5F0F\u79BB\u5408\u5668\u5206\u79BB\u8F74\u627F\u5355\u5143\uFF09
TypeCLSelf-aligningDraw-styleClutchReleaseBearingUnit=CL\u578B\uFF08\u81EA\u52A8\u8C03\u5FC3\u62C9\u5F0F\u79BB\u5408\u5668\u5206\u79BB\u8F74\u627F\u5355\u5143
LinearBallBearings=\u76F4\u7EBF\u8F74\u627F
TypeLBLinearMotionBallBearing=LB\u578B\uFF08\u76F4\u7EBF\u8FD0\u52A8\u7403\u8F74\u627F\uFF09
TypeLRLinearMotionRollerBearing=LR\u578B\uFF08\u76F4\u7EBF\u8FD0\u52A8\u6EDA\u5B50\u8F74\u627F\uFF09
TypeLBSLinearMotionBallRailBearing=LBS\u578B\uFF08\u76F4\u7EBF\u8FD0\u52A8\u7403\u5BFC\u8F68\u652F\u6491\uFF09
TypeLRSLinearMotionRollerRailBearing=LRS\u578B\uFF08\u76F4\u7EBF\u8FD0\u52A8\u6EDA\u5B50\u5BFC\u8F68\u652F\u6491\uFF09
TypeLNSLinearMotionNeedleRollerRailBearing=LNS\u578B\uFF08\u76F4\u7EBF\u8FD0\u52A8\u6EDA\u9488\u5BFC\u8F68\u652F\u6491\uFF09
TypeLBDDrawnCupLinearBearing=LBD\u51B2\u538B\u5916\u5708\u76F4\u7EBF\u8F74\u627F
AutomobileShockAbsorberBearing=\u6C7D\u8F66\u51CF\u9707\u5668\u8F74\u627F
SuspensionStrutBearing=SSB\u578B
BallCageAndBallCageAssembly=\u7403\u7B3C\u53CA\u7403\u7B3C\u603B\u6210
SeriesBJBallCageBearing=BJ\u7CFB\u5217\u7403\u7B3C
SeriesEBJBallCageBearing=EBJ\u7CFB\u5217\u7403\u7B3C
SeriesUJBallCageBearing=UJ\u7CFB\u5217\u7403\u7B3C
SeriesEUJBallCageBearing=EUJ\u7CFB\u5217\u7403\u7B3C
SeriesRFBallCageBearing=RF\u7CFB\u5217\u7403\u7B3C
SeriesDOJBallCageBearing=DOJ\u7CFB\u5217\u7403\u7B3C
SeriesDOJLBallCageBearing=DOJL\u7CFB\u5217\u7403\u7B3C
SeriesEDOJBallCageBearing=EDOJ\u7CFB\u5217\u7403\u7B3C
SeriesTJBallCageBearing=TJ\u7CFB\u5217\u7403\u7B3C
SeriesETJBallCageBearing=ETJ\u7CFB\u5217\u7403\u7B3C
SeriesVLBallCageBearing=VL\u7CFB\u5217\u7403\u7B3C
SeriesFTJBallCageBearing=FTJ\u7CFB\u5217\u7403\u7B3C
(Series)CageBearingAssembly=\uFF08\u5404\u7C7B\uFF09\u7403\u7B3C\u603B\u6210
RepairKit=\u4FEE\u7406\u5305
CeramicBearing=\u9676\u74F7\u8F74\u627F
None=\u65E0
MiniatureDeepGrooveBallBearing=\u5FAE\u578B\u6DF1\u6C9F\u7403\u8F74\u627F
Series60MiniatureBallBearings=60\u7CFB\u5217\u5FAE\u578B\u7403\u8F74\u627F
Series62MiniatureBallBearings=62\u7CFB\u5217\u5FAE\u578B\u7403\u8F74\u627F
Series63MiniatureBallBearings=63\u7CFB\u5217\u5FAE\u578B\u7403\u8F74\u627F
Series67MiniatureBallBearings=67\u7CFB\u5217\u5FAE\u578B\u7403\u8F74\u627F
Series68MiniatureBallBearings=68\u7CFB\u5217\u5FAE\u578B\u7403\u8F74\u627F
Series69MiniatureBallBearings=69\u7CFB\u5217\u5FAE\u578B\u7403\u8F74\u627F
RISeriesMiniatureBallBearings=\u82F1\u5236RI\u7CFB\u5217\u5FAE\u578B\u7403\u8F74\u627F
OtherPartsAndProducts=\u5176\u4ED6\u96F6\u4EF6\u4EA7\u54C1
IRSolidFlatBushing=IR\u578B\u5B9E\u4F53\u5E73\u5957\u5708
IRSSolidBushing(withShaftShoulder)=IRS\u5B9E\u4F53\u8F74\u5957\uFF08\u5E26\u8F74\u80A9\uFF09
IJStampingCollar=IJ\u578B\u51B2\u538B\u8F74\u5957
ASGsketOrWasher=AS\u578B\u57AB\u7247\u6216\u57AB\u5708
LXWheelCoreAndWheelCoreSsembly=LX\u578B\u8F6E\u82AF
NPNeedleOrPinRoller=NP\u6EDA\u9488\u6216\u9500\u8F74
AutoRockArmBearing=\u6C7D\u8F66\u6447\u81C2\u8F74\u627F
TypeNKSolidCoreShaftRockerArmBearing=NK\u5B9E\u82AF\u8F74\u6447\u81C2\u8F74\u627F
TypeNKOHollowShaftRockerArmBearing=NKO\u7A7A\u82AF\u8F74\u6447\u81C2\u8F74\u627F
BearingOfTextileMachinery=\u7EBA\u7EC7\u673A\u68B0\u8F74\u627F
TypeBZRotorBearing=BZ\u8F6C\u676F\u8F74\u627F
TypeGZOpeningRollerBearing=GZ\u5206\u68B3\u8F8A\u8F74\u627F
TypeSLTopRollerBearing=SL\u4E0A\u7F57\u62C9\u8F74\u627F
TypelZBottomRollerBearing=LZ\u4E0B\u7F57\u62C9\u8F74\u627F
TypeDZSpindleBearing=DZ\u7EBA\u952D\u8F74\u627F
WindingHeadBearing=\u5377\u7ED5\u5934\u8F74\u627F
RollerBearing=\u6EDA\u8F6E\u8F74\u627F
TypeFGeneralBearingForSpinningMachine=F\u578B\u7EBA\u673A\u901A\u7528\u8F74\u627F
OtherNon-standardBearingsOrNonBearingProducts=\u5176\u4ED6\u975E\u6807\u7C7B\u8F74\u627F\u6216\u975E\u8F74\u627F\u7C7B\u4EA7\u54C1
Non-standardBearings=\u975E\u6807\u7C7B\u8F74\u627F
ComponentBearing=\u7EC4\u4EF6\u8F74\u627F
BearingGeneralParts=\u8F74\u627F\u901A\u7528\u96F6\u4EF6
Ball=\u94A2\u7403
TaperedRoller=\u5706\u9525\u6EDA\u5B50
Needle=\u6EDA\u9488
CylindricalRoller=\u5706\u67F1\u6EDA\u5B50
SphericalRoller=\u7403\u9762\u6EDA\u5B50
CeramicBall=\u9676\u74F7\u7403
Special-shapedRoller=\u5F02\u5F62\u6EDA\u5B50
WheelBolt=\u8F66\u8F6E\u87BA\u6813
O-ring=O\u578B\u5708
StopRing=\u6B62\u52A8\u73AF
Rivet=\u94C6\u9489
AdapterSleeve=\u7D27\u5B9A\u5957
WithdrawalSleeve=\u9000\u5378\u5957
Grease=\u6DA6\u6ED1\u8102

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save