版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
源代碼packagelesson2;importjava.sql.*;publicclassemployee{publicStringnum;publicStringname;publicStringsex;publicStringage;publicStringedu;publicStringsla;publicStringadd;publicStringtel;publicvoidinit(Stringx1,Stringx2,Stringx3,Stringx4,Stringx5,Stringx6,Stringx7,Stringx8{num=x1;name=x2;sex=x3;age=x4;edu=x5;sla=x6;add=x7;tel=x8;}publicvoidload(Stringf{try{Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver";Stringurl="jdbc:sqlserver://localhost:1433;DatabaseName=employee";StringuserName="sa";Stringpassword="xhw";Connectionconn=DriverManager.getConnection(url,userName,password;if(conn!=nullSystem.out.println("已成功地與SQLServer2005數(shù)據(jù)庫建立連接!";Statementstmt=conn.createStatement(;stmt.executeUpdate(f;stmt.close(;}catch(Exceptione{e.printStackTrace(;}}}packagelesson2;importjava.awt.*;importjava.awt.event.*;importjava.sql.*;publicclasslesson2_1{staticFramef;CardLayoutmyCard;Panelp1;Panelp2;Panelp3;Panelp4;Panelp5;Panelp6;Panelp7;Panelp8;publicstaticvoidmain(String[]args{lesson2_1test=newlesson2_1(;test.go1(;test.go2(;test.go3(;test.go4(;test.go5(;test.go6(;test.go7(;test.go8(;}publicvoidgo1({f=newFrame("呵呵!!!";myCard=newCardLayout(;f.setLayout(myCard;p1=newPanel(;Buttonb1,b2,b3;LabelL1;TextFieldte1;finalTextFieldte2;p1.setLayout(newGridBagLayout(;GridBagConstraintsc=newGridBagConstraints(;Panelp1_1=newPanel(;p1_1.setLayout(newGridBagLayout(;GridBagConstraintsx=newGridBagConstraints(;b1=newButton("請輸入用戶名";b1.setBackground(Color.CYAN;x.insets=newInsets(50,50,50,50;x.gridx=0;x.gridy=0;x.gridwidth=1;x.gridheight=1;p1_1.add(b1,x;b2=newButton("請輸入密碼";b2.setBackground(Color.CYAN;x.gridx=0;x.gridy=5;x.gridwidth=1;x.gridheight=1;p1_1.add(b2,x;te1=newTextField(15;c.insets=newInsets(40,0,40,0;x.gridx=5;x.gridy=0;x.gridwidth=1;x.gridheight=1;p1_1.add(te1,x;te2=newTextField(15;x.gridx=5;x.gridy=5;x.gridwidth=1;x.gridheight=1;p1_1.add(te2,x;L1=newLabel("**********歡迎進(jìn)入職工管理系統(tǒng)**************";L1.setBackground(Color.CYAN;c.gridx=0;c.gridy=0;c.gridwidth=0;c.gridheight=1;p1.add(L1,c;b3=newButton("登錄";b3.setBackground(Color.CYAN;c.gridx=0;c.gridy=10;c.gridwidth=5;c.gridheight=5;p1.add(b3,c;c.gridx=0;c.gridy=20;c.gridwidth=5;c.gridheight=5;p1.add(p1_1,c;p1.setBackground(Color.green;f.add(p1,"First";myCard.show(f,"First";f.setSize(600,600;f.setVisible(true;f.addWindowListener(newWindowAdapter({publicvoidwindowClosing(WindowEvente{System.exit(0;}};b3.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{Stringx=te2.getText(;inty=Integer.parseInt(x;if(y==106myCard.show(f,"Second";}};}publicvoidgo2({p2=newPanel(;Buttonb1,b2,b3,b4,b5,b6;LabelL1;p2.setLayout(newGridBagLayout(;GridBagConstraintsc=newGridBagConstraints(;c.insets=newInsets(50,0,8,0;b1=newButton("1職工信息錄入";b1.setBackground(Color.CYAN;c.gridx=1;c.gridy=50;c.gridwidth=5;c.gridheight=50;p2.add(b1,c;b2=newButton("2職工信息瀏覽";b2.setBackground(Color.CYAN;c.gridx=1;c.gridy=100;c.gridwidth=5;c.gridheight=50;p2.add(b2,c;b3=newButton("3職工信息查詢";b3.setBackground(Color.CYAN;c.gridx=1;c.gridy=150;c.gridwidth=5;c.gridheight=50;p2.add(b3,c;b4=newButton("4職工信息排序";b4.setBackground(Color.CYAN;c.gridx=1;c.gridy=200;c.gridwidth=5;c.gridheight=50;p2.add(b4,c;b5=newButton("5職工信息修改";b5.setBackground(Color.CYAN;c.gridx=1;c.gridy=250;c.gridwidth=5;c.gridheight=50;p2.add(b5,c;b6=newButton("6職工信息刪除";b6.setBackground(Color.CYAN;c.gridx=1;c.gridy=300;c.gridwidth=5;c.gridheight=50;p2.add(b6,c;L1=newLabel("********歡迎進(jìn)入職工管理系統(tǒng)**********";L1.setBackground(Color.CYAN;c.gridx=1;c.gridy=0;c.gridwidth=5;c.gridheight=10;p2.add(L1,c;p2.setBackground(Color.green;f.add(p2,"Second";b1.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{myCard.show(f,"Third";}};b2.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{myCard.show(f,"Fourth";}};b3.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{myCard.show(f,"Fifth";}};b4.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{myCard.show(f,"Sixth";}};b5.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{myCard.show(f,"Seventh";}};b6.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{myCard.show(f,"Eighth";}};}publicvoidgo3({p3=newPanel(;p3.setLayout(newGridBagLayout(;GridBagConstraintsc=newGridBagConstraints(;Buttonb1,b2,b3,b4,b5,b6,b7,b8,b9,b10;finalTextFieldte1,te2,te3,te4,te5,te6,te7,te8;LabelL1;c.insets=newInsets(60,50,0,0;L1=newLabel("***************請輸入下面信息****************";L1.setBackground(Color.CYAN;c.gridx=0;c.gridy=0;c.gridwidth=0;c.gridheight=1;p3.add(L1,c;b1=newButton("工號";b1.setBackground(Color.CYAN;c.gridx=0;c.gridy=10;c.gridwidth=1;c.gridheight=1;p3.add(b1,c;b2=newButton("姓名";b2.setBackground(Color.CYAN;c.gridx=35;c.gridy=10;c.gridwidth=1;c.gridheight=1;p3.add(b2,c;b3=newButton("性別";b3.setBackground(Color.CYAN;c.gridx=0;c.gridy=30;c.gridwidth=1;c.gridheight=1;p3.add(b3,c;b4=newButton("年齡";b4.setBackground(Color.CYAN;c.gridx=35;c.gridy=30;c.gridwidth=1;c.gridheight=1;p3.add(b4,c;b5=newButton("學(xué)歷";b5.setBackground(Color.CYAN;c.gridx=0;c.gridy=50;c.gridwidth=1;c.gridheight=1;p3.add(b5,c;b6=newButton("工資";b6.setBackground(Color.CYAN;c.gridx=35;c.gridy=50;c.gridwidth=1;c.gridheight=1;p3.add(b6,c;b7=newButton("住址";b7.setBackground(Color.CYAN;c.gridx=0;c.gridy=70;c.gridwidth=1;c.gridheight=1;p3.add(b7,c;b8=newButton("電話";b8.setBackground(Color.CYAN;c.gridx=35;c.gridy=70;c.gridwidth=1;c.gridheight=1;p3.add(b8,c;b9=newButton("提交";b9.setBackground(Color.CYAN;c.gridx=10;c.gridy=100;c.gridwidth=1;c.gridheight=1;p3.add(b9,c;b10=newButton("返回";b10.setBackground(Color.CYAN;c.gridx=35;c.gridy=100;c.gridwidth=1;c.gridheight=1;p3.add(b10,c;te1=newTextField(10;c.gridx=10;c.gridy=10;c.gridwidth=1;c.gridheight=1;p3.add(te1,c;te2=newTextField(10;c.gridx=37;c.gridy=10;c.gridwidth=1;c.gridheight=1;p3.add(te2,c;te3=newTextField(10;c.gridx=10;c.gridy=30;c.gridwidth=1;c.gridheight=1;p3.add(te3,c;te4=newTextField(10;c.gridx=37;c.gridy=30;c.gridwidth=1;c.gridheight=1;p3.add(te4,c;te5=newTextField(10;c.gridx=10;c.gridy=50;c.gridwidth=1;c.gridheight=1;p3.add(te5,c;te6=newTextField(10;c.gridx=37;c.gridy=50;c.gridwidth=1;c.gridheight=1;p3.add(te6,c;te7=newTextField(10;c.gridx=10;c.gridy=70;c.gridwidth=1;c.gridheight=1;p3.add(te7,c;te8=newTextField(10;c.gridx=37;c.gridy=70;c.gridwidth=1;c.gridheight=1;p3.add(te8,c;p3.setBackground(Color.green;f.add(p3,"Third";b9.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{employeee1=newemployee(;e1.init(te1.getText(,te2.getText(,te3.getText(,te4.getText(,te5.getText(,te6.getText(,te7.getText(,te8.getText(;Stringx="'";Stringy="'";Stringz=",";Stringw="";Stringsql="insertintoxhwvalues(";sql=sql+x+e1.num+y+z+x++y+z+x+e1.sex+y+z+x+e1.age+y+z+x++y+z+x+e1.sla+y+z+x+e1.add+y+z+x+e1.tel+y+w;e1.load(sql;te1.setText("";te2.setText("";te3.setText("";te4.setText("";te5.setText("";te6.setText("";te7.setText("";te8.setText("";}};b10.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{myCard.show(f,"Second";}};}publicvoidgo4({p4=newPanel(;p4.setLayout(newGridBagLayout(;GridBagConstraintsc=newGridBagConstraints(;Buttonb1,b2;LabelL1;finalTextAreata;c.insets=newInsets(60,0,0,0;L1=newLabel("***************歡迎進(jìn)入信息瀏覽界面****************";L1.setBackground(Color.CYAN;c.gridx=0;c.gridy=0;c.gridwidth=0;c.gridheight=1;p4.add(L1,c;b1=newButton("瀏覽";b1.setBackground(Color.CYAN;c.gridx=0;c.gridy=10;c.gridwidth=1;c.gridheight=1;p4.add(b1,c;b2=newButton("返回";b2.setBackground(Color.CYAN;c.gridx=0;c.gridy=20;c.gridwidth=1;c.gridheight=1;p4.add(b2,c;ta=newTextArea(15,50;c.gridx=0;c.gridy=11;c.gridwidth=1;c.gridheight=1;p4.add(ta,c;p4.setBackground(Color.green;f.add(p4,"Fourth";b1.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{try{Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver";Stringurl="jdbc:sqlserver://localhost:1433;DatabaseName=employee";StringuserName="sa";Stringpassword="xhw";Connectionconn=DriverManager.getConnection(url,userName,password;Statementstmt=conn.createStatement(;ResultSetrs=stmt.executeQuery("select*fromxhw";employee[]em=newemployee[10];inti=0;while(rs.next({employeeem1=newemployee(;em1.num=rs.getString("工號";=rs.getString("姓名";em1.sex=rs.getString("性別";em1.age=rs.getString("年齡";=rs.getString("學(xué)歷";em1.sla=rs.getString("工資";em1.add=rs.getString("住址";em1.tel=rs.getString("電話";em[i]=em1;i++;}Strings="工號\t姓名\t性別\t年齡\t學(xué)歷\t工資\t住址\t電話\n";for(intj=0;j{s=s+em[j].num+"\t"+em[j].name+"\t"+em[j].sex+"\t"+em[j].age+"\t"+em[j].edu+"\t"+em[j].sla+"\t"+em[j].add+"\t"+em[j].tel+"\n\n";}ta.setText(s;rs.close(;stmt.close(;}catch(Exceptione1{e1.printStackTrace(;}}};b2.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{ta.setText("";myCard.show(f,"Second";}};}publicvoidgo5({p5=newPanel(;p5.setLayout(newGridBagLayout(;GridBagConstraintsc=newGridBagConstraints(;c.insets=newInsets(40,0,0,0;Panelp5_2=newPanel(;p5_2.setLayout(newGridBagLayout(;GridBagConstraintsx=newGridBagConstraints(;x.insets=newInsets(30,60,0,80;Buttonb1,b2,b3,b4;finalTextFieldt1;finalTextFieldt2;finalTextAreata;LabelL1;b1=newButton("查詢名稱";b1.setBackground(Color.CYAN;x.gridx=0;x.gridy=0;x.gridwidth=2;x.gridheight=1;p5_2.add(b1,x;b2=newButton("查詢范圍";b2.setBackground(Color.CYAN;x.gridx=0;x.gridy=5;x.gridwidth=2;x.gridheight=1;p5_2.add(b2,x;b3=newButton("查詢";b3.setBackground(Color.CYAN;x.gridx=0;x.gridy=10;x.gridwidth=2;x.gridheight=1;p5_2.add(b3,x;b4=newButton("返回";b4.setBackground(Color.CYAN;x.gridx=20;x.gridy=10;x.gridwidth=1;x.gridheight=1;p5_2.add(b4,x;t1=newTextField(10;x.gridx=20;x.gridy=0;x.gridwidth=1;x.gridheight=1;p5_2.add(t1,x;t2=newTextField(10;x.gridx=20;x.gridy=5;x.gridwidth=1;x.gridheight=1;p5_2.add(t2,x;L1=newLabel("***********歡迎進(jìn)入職工信息查詢界面***********";L1.setBackground(Color.CYAN;c.gridx=0;c.gridy=0;c.gridwidth=0;c.gridheight=1;p5.add(L1,c;c.gridx=0;c.gridy=5;c.gridwidth=1;c.gridheight=1;p5.add(p5_2,c;ta=newTextArea(10,65;c.gridx=0;c.gridy=10;c.gridwidth=1;c.gridheight=1;p5.add(ta,c;p5.setBackground(Color.green;f.add(p5,"Fifth";b4.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{t1.setText("";t2.setText("";ta.setText("";myCard.show(f,"Second";}};b3.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{try{Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver";Stringurl="jdbc:sqlserver://localhost:1433;DatabaseName=employee";StringuserName="sa";Stringpassword="xhw";Connectionconn=DriverManager.getConnection(url,userName,password;Statementstmt=conn.createStatement(;Stringsql="select*fromxhwwhere";Stringsql1=t1.getText(;Stringsql2=t2.getText(;sql=sql+sql1+"'"+sql2+"'";ResultSetrs=stmt.executeQuery(sql;employee[]em=newemployee[10];inti=0;while(rs.next({employeeem1=newemployee(;em1.num=rs.getString("工號";=rs.getString("姓名";em1.sex=rs.getString("性別";em1.age=rs.getString("年齡";=rs.getString("學(xué)歷";em1.sla=rs.getString("工資";em1.add=rs.getString("住址";em1.tel=rs.getString("電話";em[i]=em1;i++;}Strings="工號\t姓名\t性別\t年齡\t學(xué)歷\t工資\t住址\t電話\n";for(intj=0;j{s=s+""+em[j].num+"\t"+em[j].name+"\t"+em[j].sex+"\t"+em[j].age+"\t"+em[j].edu+"\t"+em[j].sla+"\t"+em[j].add+"\t"+em[j].tel+"\n\n";}ta.setText(s;rs.close(;stmt.close(;}catch(Exceptione1{e1.printStackTrace(;}}};}publicvoidgo6({p6=newPanel(;p6.setLayout(newGridBagLayout(;GridBagConstraintsc=newGridBagConstraints(;c.insets=newInsets(60,0,30,0;Panelp6_1=newPanel(;p6_1.setLayout(newGridBagLayout(;GridBagConstraintsx=newGridBagConstraints(;x.insets=newInsets(0,40,0,40;LabelL1;Buttonb1,b2,b3;finalTextAreata;b1=newButton("按年齡排序";x.gridx=0;x.gridy=0;x.gridwidth=1;x.gridheight=1;p6_1.add(b1,x;b2=newButton("按工資排序";x.gridx=10;x.gridy=0;x.gridwidth=1;x.gridheight=1;p6_1.add(b2,x;b3=newButton("返回";x.gridx=15;x.gridy=0;x.gridwidth=1;x.gridheight=1;p6_1.add(b3,x;L1=newLabel("***********歡迎進(jìn)入職工信息查詢界面***********";L1.setBackground(Color.CYAN;c.gridx=0;c.gridy=0;c.gridwidth=1;c.gridheight=1;p6.add(L1,c;c.gridx=0;c.gridy=5;c.gridwidth=1;c.gridheight=1;p6.add(p6_1,c;ta=newTextArea(10,65;c.gridx=0;c.gridy=10;c.gridwidth=1;c.gridheight=1;p6.add(ta,c;p6.setBackground(Color.green;f.add(p6,"Sixth";b1.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{try{Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver";Stringurl="jdbc:sqlserver://localhost:1433;DatabaseName=employee";StringuserName="sa";Stringpassword="xhw";Connectionconn=DriverManager.getConnection(url,userName,password;Statementstmt=conn.createStatement(;ResultSetrs=stmt.executeQuery("select*fromxhw";employee[]em=newemployee[10];inti=0;while(rs.next({employeeem1=newemployee(;em1.num=rs.getString("工號";=rs.getString("姓名";em1.sex=rs.getString("性別";em1.age=rs.getString("年齡";=rs.getString("學(xué)歷";em1.sla=rs.getString("工資";em1.add=rs.getString("住址";em1.tel=rs.getString("電話";em[i]=em1;i++;}employeezz;intx,y;for(intf=1;ffor(intk=f+1;k{x=Integer.parseInt(em[f].age;y=Integer.parseInt(em[k].age;if(x>y{zz=em[f];em[f]=em[k];em[k]=zz;}}Strings=""+"工號\t姓名\t性別\t年齡\t學(xué)歷\t工資\t住址\t電話\n";for(intj=0;j{s=s+""+em[j].num+"\t"+em[j].name+"\t"+em[j].sex+"\t"+em[j].age+"\t"+em[j].edu+"\t"+em[j].sla+"\t"+em[j].add+"\t"+em[j].tel+"\n\n";}ta.setText(s;rs.close(;stmt.close(;}catch(Exceptione1{e1.printStackTrace(;}}};b2.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{try{Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver";Stringurl="jdbc:sqlserver://localhost:1433;DatabaseName=employee";StringuserName="sa";Stringpassword="xhw";Connectionconn=DriverManager.getConnection(url,userName,password;Statementstmt=conn.createStatement(;ResultSetrs=stmt.executeQuery("select*fromxhw";employee[]em=newemployee[10];inti=0;while(rs.next({employeeem1=newemployee(;em1.num=rs.getString("工號";=rs.getString("姓名";em1.sex=rs.getString("性別";em1.age=rs.getString("年齡";=rs.getString("學(xué)歷";em1.sla=rs.getString("工資";em1.add=rs.getString("住址";em1.tel=rs.getString("電話";em[i]=em1;i++;}employeezz;intx,y;for(intf=1;ffor(intk=f+1;k{x=Integer.parseInt(em[f].sla;y=Integer.parseInt(em[k].sla;if(x>y{zz=em[f];em[f]=em[k];em[k]=zz;}}Strings=""+"工號\t姓名\t性別\t年齡\t學(xué)歷\t工資\t住址\t電話\n";for(intj=0;j{s=s+""+em[j].num+"\t"+em[j].name+"\t"+em[j].sex+"\t"+em[j].age+"\t"+em[j].edu+"\t"+em[j].sla+"\t"+em[j].add+"\t"+em[j].tel+"\n\n";}ta.setText(s;rs.close(;stmt.close(;}catch(Exceptione1{e1.printStackTrace(;}}};b3.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{ta.setText("";myCard.show(f,"Second";}};}publicvoidgo7({p7=newPanel(;p7.setLayout(newGridBagLayout(;GridBagConstraintsc=newGridBagConstraints(;c.insets=newInsets(40,0,50,0;Panelp7_1=newPanel(;p7_1.setLayout(newGridBagLayout(;GridBagConstraintsx=newGridBagConstraints(;x.insets=newInsets(30,60,0,80;LabelL1;Buttonb1,b2,b3,b4,b5,b6,b7;finalTextFieldt1;finalTextFieldt2;finalTextFieldt3;b1=newButton("信息編號";b1.setBackground(Color.CYAN;x.gridx=0;x.gridy=0;x.gridwidth=1;x.gridheight=1;p7_1.add(b1,x;b2=newButton("修改名稱";b2.setBackground(Color.CYAN;x.gridx=0;x.gridy=5;x.gridwidth=1;x.gridheight=1;p7_1.add(b2,x;b3=newButton("修改值";b3.setBackground(Color.CYAN;x.gridx=0;x.gridy=10;x.gridwidth=1;x.gridheight=1;p7_1.add(b3,x;b4=newButton("修改";b4.setBackground(Color.CYAN;x.gridx=0;x.gridy=15;x.gridwidth=1;x.gridheight=1;p7_1.add(b4,x;b5=newButton("返回";b5.setBackground(Color.CYAN;x.gridx=10;x.gridy=15;x.gridwidth=1;x.gridheight=1;p7_1.add(b5,x;b6=newButton("查詢";b6.setBackground(Color.CYAN;x.gridx=0;x.gridy=20;x.gridwidth=1;x.gridheight=1;p7_1.add(b6,x;b7=newButton("繼續(xù)";b7.setBackground(Color.CYAN;x.gridx=10;x.gridy=20;x.gridwidth=1;x.gridheight=1;p7_1.add(b7,x;t1=newTextField(16;x.gridx=10;x.gridy=0;x.gridwidth=1;x.gridheight=1;p7_1.add(t1,x;t2=newTextField(16;x.gridx=10;x.gridy=5;x.gridwidth=1;x.gridheight=1;p7_1.add(t2,x;t3=newTextField(16;x.gridx=10;x.gridy=10;x.gridwidth=1;x.gridheight=1;p7_1.add(t3,x;L1=newLabel("***********歡迎進(jìn)入職工信息修改界面***********";L1.setBackground(Color.CYAN;c.gridx=0;c.gridy=0;c.gridwidth=1;c.gridheight=1;p7.add(L1,c;c.gridx=0;c.gridy=10;c.gridwidth=1;c.gridheight=1;p7.add(p7_1,c;p7.setBackground(Color.green;f.add(p7,"Seventh";b4.addMouseListener(newMouseAdapter({publicvoidmouseClicked(MouseEvente{employeee
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二四人力資源培訓(xùn)與招聘加盟合同正規(guī)范本3篇
- 2025年度5G通信網(wǎng)絡(luò)建設(shè)施工合同范本6篇
- 2024蔬菜種植保險采購合同范本2篇
- 2024簡單的購房合同范本
- 2025年度彩鋼瓦屋頂安全性能評估與整改合同3篇
- 2025年度財務(wù)數(shù)據(jù)保密合規(guī)性審查合同范本3篇
- 2025年度離婚案件訴訟策略與執(zhí)行服務(wù)合同3篇
- 二零二五壁畫藝術(shù)教育合作合同3篇
- 二零二四年度「風(fēng)力發(fā)電設(shè)備維修」合同
- 二零二五年版10千伏電力施工合同范本正規(guī)范修訂版發(fā)布6篇
- 佛山市斯高家具全屋定制水平考試
- 搖臂鉆床日常點檢表
- 經(jīng)濟(jì)開發(fā)區(qū)擴區(qū)可行性研究報告
- 會計職業(yè)道德課件(完整版)
- 金屬探測器檢查記錄表
- 2022年五年級數(shù)學(xué)興趣小組活動記錄
- Q∕GDW 12127-2021 低壓開關(guān)柜技術(shù)規(guī)范
- 商品房預(yù)售合同登記備案表
- 版式設(shè)計發(fā)展歷程-ppt課件
- 通信機房蓄電池放電試驗報告
- 病原細(xì)菌的分離培養(yǎng)
評論
0/150
提交評論