版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
JAVA職工管理系統(tǒng)實(shí)驗(yàn)報(bào)告姓名:張旭冉學(xué)號(hào):班級(jí):信10-1北方工業(yè)大學(xué)理學(xué)院信息與計(jì)算科學(xué)系2013年12月17日職工管理系統(tǒng)一、實(shí)驗(yàn)?zāi)康慕?jīng)過(guò)該課程設(shè)計(jì),使同學(xué)們進(jìn)一步理解概JAVA的基本觀點(diǎn)、理論和方法,初步掌握J(rèn)DK、Eclipse的調(diào)試和應(yīng)用,以及程序中錯(cuò)誤的解決方法,明確JAVA在實(shí)質(zhì)程序設(shè)計(jì)中的應(yīng)用。使講堂中學(xué)習(xí)到理論獲得應(yīng)用,練習(xí)文件形式在JAVA程序設(shè)計(jì)中的應(yīng)用。二、實(shí)驗(yàn)內(nèi)容設(shè)計(jì)題目:職工管理系統(tǒng)設(shè)計(jì)要求:(1)達(dá)成職工信息的增添、刪除、查問(wèn)、改正功能2)使用用戶界面操作3)使用文件形式達(dá)成設(shè)計(jì)思路:第一設(shè)計(jì)界面進(jìn)入面板,在面板中增添菜單項(xiàng)選擇項(xiàng),并將要實(shí)現(xiàn)的功能選項(xiàng)增添此中,而后對(duì)這些選項(xiàng)實(shí)行監(jiān)聽,實(shí)現(xiàn)其功能。經(jīng)過(guò)文件種類知識(shí)的應(yīng)用,實(shí)現(xiàn)對(duì)職工信息的管理。綱要設(shè)計(jì)面板設(shè)計(jì):第一設(shè)計(jì)一個(gè)容器,而后再容器中增添菜單,在菜單中增添選項(xiàng),并在容器中加入面板,面板布局設(shè)置為CardLayout,最后將面板增添進(jìn)容器。功能實(shí)現(xiàn):在錄入、查問(wèn)、改正和刪除界面中使用JButton、JLabel、ButtonGroup、JRadioButton、JTextField、Choice為界面中加入相應(yīng)的組件,并對(duì)其進(jìn)行監(jiān)聽,同時(shí)附加了文件流的辦理。C.詳盡設(shè)計(jì)1、定義職工類:{Stringnumber,name,discipling,grade,borth,sex;publicEmployee( ){}publicvoidsetNumber(Stringnumber){this.number=number;}publicStringgetNumber( ){returnnumber;}publicvoidsetName(Stringname){=name;}publicStringgetName( ){returnname;}publicvoidsetDiscipling(Stringdiscipling){this.discipling=discipling;}publicStringgetDisciping( ){returndiscipling;}publicvoidsetGrade(Stringgrade){this.grade=grade;}publicStringgetGrade( ){returngrade;}publicvoidsetBorth(Stringborth){this.borth=borth;}publicStringgetBorth( ){returnborth;}publicvoidsetSex(Stringsex){this.sex=sex;}publicStringgetSex( ){returnsex;}}2、主程序:importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.io.*;importjava.util.Hashtable;publicclassEmployeeManagerextendsJFrameimplementsActionListener{EmployeeSituationModifySituationInquestDelete
基本信息錄入基本信息改正基本信息查問(wèn)基本信息刪除
=null;=null;=null;=null;JMenuBarbar;JMenufileMenu;JMenuItem錄入,改正,查問(wèn),刪除;Containercon=null;Hashtable基本信息=null;Filefile=null;CardLayoutcard=null;JLabellabel=null;JPanelpCenter;publicEmployeeManager( ){錄入=newJMenuItem("錄入職工基本信息");改正=newJMenuItem("改正職工基本信息");查問(wèn)=newJMenuItem("查問(wèn)職工基本信息");刪除=newJMenuItem("刪除職工基本信息");bar=newJMenuBar( );fileMenu=newJMenu("菜單項(xiàng)選擇項(xiàng)");fileMenu.add(錄入);fileMenu.add(改正);fileMenu.add(查問(wèn));fileMenu.add(刪除);bar.add(fileMenu);setJMenuBar(bar);label=newJLabel("歡迎進(jìn)入職工信息管理系統(tǒng)",JLabel.CENTER);label.setFont(newFont("SansSerif",Font.BOLD+Font.ITALIC,25));label.setForeground(Color.red);基本信息=newHashtable( );錄入.addActionListener(this);改正.addActionListener(this);查問(wèn).addActionListener(this);刪除.addActionListener(this);card=newCardLayout( );con=getContentPane( );pCenter=newJPanel( );pCenter.setLayout(card);pCenter.setBackground(Color.yellow);file=newFile("
基本信息
.txt");if(!file.exists( )){try{FileOutputStreamout=newFileOutputStream(file);ObjectOutputStreamobjectOut=newObjectOutputStream(out);objectOut.writeObject(
基本信息
);objectOut.close( );out.close( );}catch(IOExceptione){}}基本信息錄入=newEmployeeSituation(file);基本信息改正=newModifySituation(file);基本信息查問(wèn)=newInquest(this,file);基本信息刪除=newDelete(file);pCenter.add("歡迎語(yǔ)界面",label);pCenter.add("錄入界面",基本信息錄入);pCenter.add("改正界面",基本信息改正);pCenter.add("刪除界面",基本信息刪除);con.add(pCenter,BorderLayout.CENTER);con.validate( );addWindowListener(newWindowAdapter( ){publicvoidwindowClosing(WindowEvente){System.exit(0);}});setVisible(true);setBounds(100,50,420,380);validate( );}publicvoidactionPerformed(ActionEvente){if(e.getSource( )=={
錄入)card.show(pCenter,"
錄入界面
");}elseif(e.getSource( )==
改正){card.show(pCenter,"改正界面");}elseif(e.getSource( )==查問(wèn)){基本信息查問(wèn).setVisible(true);}elseif(e.getSource( )==刪除){card.show(pCenter,"刪除界面");}}publicstaticvoidmain(Stringargs[]){newEmployeeManager( );}}3、實(shí)現(xiàn)職工信息的錄入:importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.io.*;importjava.util.*;publicclassEmployeeSituationextendsJPanelimplementsActionListener{Hashtable基本信息表=null;JTextField職工號(hào),姓名,薪資;Choice部門;JRadioButton男,女;Employee職工=null;ButtonGroupgroup=null;JButton錄入,重置;FileInputStreaminOne=null;ObjectInputStreaminTwo=null;FileOutputStreamoutOne=null;ObjectOutputStreamoutTwo=null;Filefile=null;publicEmployeeSituation(Filefile){this.file=file;職工號(hào)=newJTextField(10);姓名=newJTextField(10);部門=newChoice( );部門.add("請(qǐng)選擇");部門.add("研發(fā)部");部門.add("銷售部");部門.add("人事部");部門.add("安所有");薪資=newJTextField(10);group=newButtonGroup( );男=newJRadioButton("女=newJRadioButton("
男",true);女",false);group.add(group.add(
男);女);錄入=newJButton("錄入");重置=newJButton("重置");錄入.addActionListener(this);重置.addActionListener(this);Boxbox1=Box.createHorizontalBox( );box1.add(newJLabel("職工號(hào):",JLabel.CENTER));box1.add(職工號(hào));Boxbox2=Box.createHorizontalBox( );box2.add(newJLabel("姓名:",JLabel.CENTER));box2.add(姓名);Boxbox3=Box.createHorizontalBox( );box3.add(newJLabel("性別:",JLabel.CENTER));box3.add(男);box3.add(女);Boxbox4=Box.createHorizontalBox( );box4.add(newJLabel("部門:",JLabel.CENTER));box4.add(部門);Boxbox6=Box.createHorizontalBox( );box6.add(newJLabel("",JLabel.CENTER));Boxbox5=Box.createHorizontalBox( );box5.add(newJLabel("薪資:",JLabel.CENTER));box5.add(薪資);BoxboxH=Box.createVerticalBox( );boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box5);boxH.add(box6);boxH.add(box4);boxH.add(Box.createVerticalGlue( ));JPanelpCenter=newJPanel( );pCenter.add(boxH);pCenter.setBackground(Color.yellow);setLayout(newBorderLayout( ));add(pCenter,BorderLayout.CENTER);JPanelpSouth=newJPanel( );pSouth.add(錄入);pSouth.add(重置);pSouth.setBackground(Color.yellow);add(pSouth,BorderLayout.SOUTH);validate( );}publicvoidactionPerformed(ActionEvente){if(e.getSource( )==錄入){Stringnumber="";number=職工號(hào).getText( );if(number.length( )>0){try{inOne=newFileInputStream(file);inTwo=newObjectInputStream(inOne);基本信息表=(Hashtable)inTwo.readObject( );inOne.close( );inTwo.close( );}catch(Exceptionee){}if(基本信息表.containsKey(number)){Stringwarning="該職工基本信息已存在JOptionPane.showMessageDialog(this,warning,"",JOptionPane.WARNING_MESSAGE);
,請(qǐng)到改正頁(yè)面改正警示
!";}else{Stringm="
基本信息將被錄入
!";intok=JOptionPane.showConfirmDialog(this,m,"
確認(rèn)",JOptionPane.YES_NO_OPTION,JOptionPane.INFORMATION_MESSAGE);if(ok==JOptionPane.YES_OPTION){Stringname=
姓名.getText( );Stringdiscipling=部門.getSelectedItem( );Stringgrade=薪資.getText( );Stringsex=null;if(男.isSelected( )){sex=男.getText( );}else{sex=女.getText( );}職工=newEmployee( );職工.setNumber(number);職工.setName(name);職工.setDiscipling(discipling);職工.setGrade(grade);職工.setSex(sex);try{outOne=newFileOutputStream(file);outTwo=newObjectOutputStream(outOne);基本信息表.put(number,職工);outTwo.writeObject(基本信息表);outTwo.close( );outOne.close( );職工號(hào).setText(null);姓名.setText(null);薪資.setText(null);}catch(Exceptionee){System.out.println(ee);}}}}else{Stringwarning="一定要輸入職工號(hào)JOptionPane.showMessageDialog(this,warning,"",JOptionPane.WARNING_MESSAGE);
!";
警示}}if(e.getSource( )==
重置){職工號(hào).setText(null);姓名.setText(null);部門.remove(部門.getSelectedIndex( ));薪資.setText(null);}}}4、實(shí)現(xiàn)職工信息的改正:importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.io.*;importjava.util.*;publicclassModifySituationextendsJPanelimplementsActionListener{Hashtable基本信息表=null;JTextField職工號(hào),姓名,薪資;Choice部門;JRadioButton男,女;ButtonGroupgroup=null;JButton開始改正,錄入改正,重置;FileInputStreaminOne=null;ObjectInputStreaminTwo=null;FileOutputStreamoutOne=null;ObjectOutputStreamoutTwo=null;Filefile=null;publicModifySituation(Filefile){this.file=file;職工號(hào)=newJTextField(10);姓名=newJTextField(10);部門=newChoice( );部門.add("請(qǐng)選擇");部門.add("研發(fā)部");部門.add("銷售部");部門.add("人事部");部門.add("安所有");薪資=newJTextField(10);group=newButtonGroup( );男=newJRadioButton("女=newJRadioButton("
男",true);女",false);group.add(group.add(
男);女);開始改正錄入改正
=newJButton("=newJButton("
開始改正錄入改正
");");錄入改正.setEnabled(false);重置=newJButton("重置");職工號(hào).addActionListener(this);開始改正.addActionListener(this);錄入改正.addActionListener(this);重置.addActionListener(this);Boxbox1=Box.createHorizontalBox( );box1.add(newJLabel("輸入要改正信息的職工號(hào):",JLabel.CENTER));box1.add(職工號(hào));box1.add(開始改正);Boxbox2=Box.createHorizontalBox( );box2.add(newJLabel("姓名:",JLabel.CENTER));box2.add(姓名);Boxbox3=Box.createHorizontalBox( );box3.add(newJLabel("性別:",JLabel.CENTER));box3.add(男);box3.add(女);Boxbox4=Box.createHorizontalBox( );box4.add(newJLabel("部門:",JLabel.CENTER));box4.add(部門);Boxbox6=Box.createHorizontalBox( );box6.add(newJLabel("",JLabel.CENTER));Boxbox5=Box.createHorizontalBox( );box5.add(newJLabel("薪資:",JLabel.CENTER));box5.add(薪資);BoxboxH=Box.createVerticalBox( );boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box5);boxH.add(box6);boxH.add(box4);boxH.add(Box.createVerticalGlue( ));JPanelpCenter=newJPanel( );pCenter.add(boxH);pCenter.setBackground(Color.yellow);setLayout(newBorderLayout( ));add(pCenter,BorderLayout.CENTER);JPanelpSouth=newJPanel( );pSouth.add(錄入改正);pSouth.add(重置);pSouth.setBackground(Color.yellow);add(pSouth,BorderLayout.SOUTH);validate( );}publicvoidactionPerformed(ActionEvente){if(e.getSource( )==
開始改正
||e.getSource( )==
職工號(hào)){Stringnumber="";number=職工號(hào).getText( );if(number.length( )>0){try{inOne=newFileInputStream(file);inTwo=newObjectInputStream(inOne);基本信息表=(Hashtable)inTwo.readObject( );inOne.close( );inTwo.close( );}catch(Exceptionee){}if(基本信息表.containsKey(number)){錄入改正.setEnabled(true);Employeestu=(Employee)基本信息表.get(number);姓名.setText(stu.getName( ));部門.getSelectedItem( );薪資.setText(stu.getGrade( ));if(stu.getSex( ).equals("{
男"))男.setSelected(true);}else{女.setSelected(true);}}else{錄入改正.setEnabled(false);Stringwarning="該職工號(hào)不存在!";JOptionPane.showMessageDialog(this,warning,"警示",JOptionPane.WARNING_MESSAGE);職工號(hào).setText(null);姓名.setText(null);部門.remove(部門.getSelectedItem( ));薪資.setText(null);}}else{錄入改正
.setEnabled(false);Stringwarning="一定要輸入職工號(hào)JOptionPane.showMessageDialog(this,warning,"",JOptionPane.WARNING_MESSAGE);
!";
警示職工號(hào).setText(null);姓名.setText(null);部門.remove(部門.getSelectedItem( ));薪資.setText(null);}}elseif(e.getSource( )==錄入改正){Stringnumber="";number=職工號(hào).getText( );if(number.length( )>0){try{inOne=newFileInputStream(file);inTwo=newObjectInputStream(inOne);基本信息表=(Hashtable)inTwo.readObject( );inOne.close( );inTwo.close( );}catch(Exceptionee){}if(
基本信息表
.containsKey(number)){Stringquestion="
該職工基本信息已存在
,您想改正他
(她)的基本信息嗎?";JOptionPane.showMessageDialog(this,question,"
警示",JOptionPane.QUESTION_MESSAGE);Stringm="
基本信息將被改正
!";intok=JOptionPane.showConfirmDialog(this,m,"
確認(rèn)",JOptionPane.YES_NO_OPTION,JOptionPane.INFORMATION_MESSAGE);if(ok==JOptionPane.YES_OPTION){Stringname=
姓名.getText( );Stringdiscipling=
部門.getSelectedItem( );Stringgrade=
薪資.getText( );Stringsex=null;if(
男.isSelected( )){sex=
男.getText( );}else{sex=
女.getText( );}Employee
職工=newEmployee( );職工.setNumber(number);職工.setName(name);職工.setDiscipling(discipling);職工.setGrade(grade);職工.setSex(sex);try{outOne=newFileOutputStream(file);outTwo=newObjectOutputStream(outOne);基本信息表.put(number,職工);outTwo.writeObject(基本信息表);outTwo.close( );outOne.close( );職工號(hào).setText(null);姓名.setText(null);部門.remove(部門.getSelectedItem( ));薪資.setText(null);}catch(Exceptionee){System.out.println(ee);}錄入改正.setEnabled(false);}elseif(ok==JOptionPane.NO_OPTION){錄入改正.setEnabled(true);}}else{Stringwarning="該職工號(hào)沒(méi)有基本信息,不可以改正!";JOptionPane.showMessageDialog(this,warning,"警示",JOptionPane.WARNING_MESSAGE);錄入改正.setEnabled(false);}}else{Stringwarning="一定要輸入職工號(hào)!";JOptionPane.showMessageDialog(this,warning,"警示",JOptionPane.WARNING_MESSAGE);錄入改正.setEnabled(false);}}if(e.getSource( )==重置){職工號(hào).setText(null);姓名.setText(null);部門.remove(部門.getSelectedItem( ));薪資.setText(null);}}}5、實(shí)現(xiàn)職工信息的查問(wèn):importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.io.*;importjava.util.*;publicclassInquestextendsJDialogimplementsActionListener{Hashtable基本信息表=null;JTextField職工號(hào),姓名,部門,薪資;JRadioButton男,女;JButton查問(wèn);ButtonGroupgroup=null;FileInputStreaminOne=null;ObjectInputStreaminTwo=null;Filefile=null;publicInquest(JFramef,Filefile){super(f,"查問(wèn)對(duì)話框",false);this.file=file;職工號(hào)=newJTextField(10);查問(wèn)=newJButton("查問(wèn)");職工號(hào).addActionListener(this);查問(wèn).addActionListener(this);姓名=newJTextField(10);姓名.setEditable(false);部門=newJTextField(10);部門.setEditable(false);薪資=newJTextField(10);薪資.setEditable(false);男=newJRadioButton("男",false);女=newJRadioButton("女",false);group=newButtonGroup( );group.add(男);group.add(女);Boxbox1=Box.createHorizontalBox( );box1.add(newJLabel("輸入要查問(wèn)的職工號(hào):",JLabel.CENTER));box1.add(職工號(hào));box1.add(查問(wèn));Boxbox2=Box.createHorizontalBox( );box2.add(newJLabel("姓名:",JLabel.CENTER));box2.add(姓名);Boxbox3=Box.createHorizontalBox( );box3.add(newJLabel("性別:",JLabel.CENTER));box3.add(男);box3.add(女);Boxbox4=Box.createHorizontalBox( );box4.add(newJLabel("部門:",JLabel.CENTER));box4.add(部門);Boxbox5=Box.createHorizontalBox( );box5.add(newJLabel("薪資:",JLabel.CENTER));box5.add(薪資);BoxboxH=Box.createVerticalBox( );boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box5);boxH.add(box4);boxH.add(Box.createVerticalGlue( ));JPanelpCenter=newJPanel( );pCenter.add(boxH);pCenter.setBackground(Color.green);Containercon=getContentPane( );con.add(pCenter,BorderLayout.CENTER);con.validate( );setVisible(false);setBounds(100,200,360,270);addWindowListener(newWindowAdapter( ){publicvoidwindowClosing(WindowEvente){setVisible(false);}});}publicvoidactionPerformed(ActionEvente){姓名.setText(null);部門.setText(null);薪資.setText(null);if(e.getSource( )==查問(wèn)||e.getSource( )==職工號(hào)){Stringnumber="";number=職工號(hào).getText( );if(number.length( )>0){try{inOne=newFileInputStream(file);inTwo=newObjectInputStream(inOne);基本信息表=(Hashtable)inTwo.readObject( );inOne.close( );inTwo.close( );}catch(Exceptionee){}if(基本信息表.containsKey(number)){Employeestu=(Employee)基本信息表.get(number);姓名.setText(stu.getName( ));部門.setText(stu.getDisciping( ));薪資.setText(stu.getGrade( ));if(stu.getSex( ).equals("{
男"))男.setSelected(true);}else{女.setSelected(true);}}else{Stringwarning="該職工號(hào)不存在!";JOptionPane.showMessageDialog(this,warning,"警示",JOptionPane.WARNING_MESSAGE);}}else{Stringwarning="一定要輸入職工號(hào)!";JOptionPane.showMessageDialog(this,warning,"警示",JOptionPane.WARNING_MESSAGE);}}}}6、實(shí)現(xiàn)職工信息的刪除:importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.io.*;importjava.util.*;publicclassDeleteextendsJPanelimplementsActionListener{Hashtable基本信息表=null;JTextField職工號(hào),姓名,部門,薪資;JRadioButton男,女;JButton刪除;ButtonGroupgroup=null;FileInputStreaminOne=null;ObjectInputStreaminTwo=null;FileOutputStreamoutOne=null;ObjectOutputStreamoutTwo=null;Filefile=null;publicDelete(Filefile){this.file=file;職工號(hào)=newJTextField(10);刪除=newJButton("刪除");職工號(hào).addActionListener(this);刪除.addActionListener(this);姓名=newJTextField(10);姓名.setEditable(false);部門=newJTextField(10);部門.setEditable(false);薪資=newJTextField(10);薪資.setEditable(false);男=newJRadioButton("男",false);女=newJRadioButton("女",false);group=newButtonGroup( );group.add(男);group.add(女);Boxbox1=Box.createHorizontalBox( );box1.add(newJLabel("輸入要?jiǎng)h除的學(xué)號(hào):",JLabel.CENTER));box1.add(職工號(hào));box1.add(刪除);Boxbox2=Box.createHorizontalBox( );box2.add(newJLabel("姓名:",JLabel.CENTER));box2.add(姓名);Boxbox3=Box.createHorizontalBox( );box3.add(newJLabel("性別:",JLabel.CENTER));box3.add(男);box3.add(女);Boxbox4=Box.createHorizontalBox( );box4.add(newJLabel("部門:",JLabel.CENTER));box4.add(部門);Boxbox6=Box.createHorizontalBox( );box6.add(newJLabel("",JLabel.CENTER));Boxbox5=Box.createHorizontalBox( );box5.add(newJLabel("薪資:",JLabel.CENTER));box5.add(薪資);BoxboxH=Box.createVerticalBox( );boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box5);boxH.add(box6);boxH.add(box4);boxH.add(Box.createVerticalGlue( ));JPane
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2026年法學(xué)專業(yè)知識(shí)法學(xué)理論與應(yīng)用模擬題集202X年度題庫(kù)
- 2026年汽車維修與駕駛技能知識(shí)題庫(kù)
- 2026年CET四級(jí)英語(yǔ)單詞拓展和考點(diǎn)總結(jié)習(xí)題冊(cè)
- 2026年心理測(cè)試心理咨詢師專業(yè)能力測(cè)試題集
- 2026年汽車維修工職業(yè)資格考試汽車構(gòu)造與原理理論題集
- 護(hù)理新進(jìn)展與新理念
- 2026年保定理工學(xué)院?jiǎn)握芯C合素質(zhì)考試模擬試題含詳細(xì)答案解析
- 外貿(mào)新人入職培訓(xùn)
- 2026黑龍江黑河五大連池市農(nóng)村中心敬老院招8人參考考試試題及答案解析
- 2026上半年貴州事業(yè)單位聯(lián)考省科學(xué)技術(shù)協(xié)會(huì)招聘3人筆試模擬試題及答案解析
- 2026年1月浙江省高考(首考)地理試題(含答案)
- 職高信息技術(shù)題目及答案
- 2026年各地高三語(yǔ)文1月聯(lián)考文言文匯編(文言詳解+挖空)
- 冰箱安裝施工方案
- 老年人摔傷后的長(zhǎng)期護(hù)理計(jì)劃
- 消防維保應(yīng)急預(yù)案及措施
- 2026元旦主題班會(huì):馬年猜猜樂(lè)猜成語(yǔ) (共130題)【課件】
- 2026年盤錦職業(yè)技術(shù)學(xué)院?jiǎn)握新殬I(yè)技能測(cè)試題庫(kù)及參考答案詳解一套
- 水利工程質(zhì)量管理制度匯編
- 小區(qū)用火用電管理制度版本(3篇)
- 長(zhǎng)期照護(hù)師知識(shí)考核試卷及答案
評(píng)論
0/150
提交評(píng)論