版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、1 / 25 文档可自由编辑打印 面向对象程序设计面向对象程序设计 实验报告实验报告 题题 目目 医药销售系统医药销售系统 学学 院院 商学院商学院 专专 业业 信息管理与信息系统信息管理与信息系统 班班 级级 *班班 学学 号号 201052275* 学生姓名学生姓名 * 指导教师指导教师 * 编写日期编写日期 2013 年年 1 月月 5 号号 2 / 25 文档可自由编辑打印 目目 录录 一、需求分析一、需求分析.1 1.1 功能需求.1 1.2 性能需求.1 1.3 数据需求.1 二、系统运行环境二、系统运行环境.1 三、系统总体设计三、系统总体设计.2 3.1 登录界面.2 3.2
2、系统功能.2 四、数据库设计四、数据库设计.3 4.1 概念结构设计.3 4.2 逻辑结构设计.3 4.3 物理结构设计.4 4.3.1 用户信息表 Users.4 4.3.2 药品信息表 MedicineInfos .4 4.3.3 订单信息表 WholesaleInfo.6 五、程序模块设计五、程序模块设计.6 5.1 运行界面及其效果图.6 5.2 程序代码.8 六、总结六、总结.22 七、参考资料七、参考资料.22 0 / 25 文档可自由编辑打印 一、一、需求分析需求分析 根据课题调查和分析用户的业务活动、信息和处理的需求,以及各 种数据之间的约束条件关系,形成以下的系统的需求说明。
3、 1.11.1 功能需求功能需求(功能划分,功能描述)(功能划分,功能描述) Login.java 实现注册和登录功能。注册,将用户姓名和密码写入数 据库用户表(Users) ,并反馈给注册用户。登录,按照用户填写的用户名和密 码,在数据库中查找相关信息,如果匹配则提示登录成功,并转至药品管理系 统的管理界面。否则提示登录失败。 ManageMain.java 实现用户管理界面功能选择。在功能选择界面中可 以选择添加、删除、修改、查询和统计药品信息,并且可以选择售出药品。 InsMedicineInfo.java 实现添加药品信息功能。在这一模块中,可 以将药品信息填写保存到数据库药品信息表(
4、MedicineInfo)中。并返回 操作状态。 DelMedicineInfo.java 实现分别按药品编号或药品名称删除指定药 品信息,被删除的药品信息将从药品信息表中删除。并返回操作状态。 UpdMedicineInfo.java 实现按药品编号更新药品信息功能。被修改 的药品信息在数据库中也被相应修改。并返回操作状态。 QueMedicineInfo.java 实现分别按药品编号或药品进价范围查询药 品信息。数据库中符合条件的药品信息将被显示在查询界面的文本域中。 StaMedicineInfo.java 实现统计数据库中药品信息。统计的药品信 息将显示在统计药品信息界面,以表格的形式
5、呈现。 SalMedicineInfo.java 实现出售药品功能。填写药品编号和售出数 量,并生成订单信息。出售药品订单信息将被存入到数据库药品订单信息 表(WholesaleInfo)中。 1.21.2 性能需求(性能需求(软件适应性和移植性等)软件适应性和移植性等) 在 Windows 平台测试无误。 使用 SQL Server 2008 数据库。 可用于一般的药品信息管理。 1.31.3 数据需求数据需求(数据之间的依赖和约束关系)(数据之间的依赖和约束关系) 本药品信息管理系统共有三张表,一张为独立的用户信息表 (Users) ,用于管理用户信息。其余两张为药品信息表 (Medici
6、neInfo)和订单信息表(WholesaleInfo) 。 二、系统运行环境二、系统运行环境 本课题是在 SQL Server 2008、netbeans6.9.1 环境下运行的。 1 / 25 文档可自由编辑打印 三、系统总体设计三、系统总体设计 3.13.1 登录界面登录界面 注册信息 用户登录 登录界面 3.23.2 系统功能系统功能 药品管理系统药品管理功能 添 加 药 品 信 息 删 除 药 品 信 息 修 改 药 品 信 息 查 询 药 品 信 息 统 计 药 品 信 息 出 售 药 品 功 能 2 / 25 文档可自由编辑打印 四、数据库设计四、数据库设计 4.1 概念结构设计
7、概念结构设计 用户表 用户名 用户密码 药品信息表 药品编号 药品名称 药品通称 药品规格 药品类别 药品进价 药品批发价 药品库存量 药品订单表 订单编号 药品编号 批发药品数量 外键约束 4.2 逻辑结构设计逻辑结构设计 Users Username Userpassword MedicineInfo medNumber medName medShortName medNors medCate medInPrice medWholesale medCount WholesaleInfo wsNumber medNumber wsMedCount 3 / 25 文档可自由编辑打印 4.3 物
8、理结构设计物理结构设计 4.3.1 用户信息表 Uses SQL: /*=*/ /* Table: Users */ /*=*/ create table Users ( username varchar(10) not null, userpassword varchar(20) null, constraint PK_USERS primary key (username) ) go Insert into Users values(aa,bb); if exists (select 1 from sysobjects where id = object_id(Users) and typ
9、e = U) drop table Users go 4.3.2 药品信息表 MedicineInfo SQL: /*=*/ /* Table: MedicineInfo */ /*=*/ 4 / 25 文档可自由编辑打印 create table MedicineInfo ( medNumber varchar(8) not null, medName varchar(40) not null, medShortName varchar(10) null, medNors varchar(4) null, medCate varchar(20) null, medInPrice float
10、not null, medWholesalePrice float not null, medCount int not null, constraint PK_MEDICINEINFO primary key (medNumber) ) go insert into MedicineInfo values(95270001,葵花牌感冒灵颗粒,葵感,16*2,感 冒药,24.7,25.8,1000); insert into MedicineInfo values(95270002,双黄连口服液,双黄连液,12*1,感 冒药,29.2,30.1,1000); insert into Medic
11、ineInfo values(95270003,阿莫西林,莫西,1*1,消炎药 ,30,32.1,1000); insert into MedicineInfo values(95270004,吗丁啉,吗丁啉,1*1,胃肠道药 ,18.2,20,498); insert into MedicineInfo values(95270005,对乙酰氨基酚 ,扑热息痛,1*1,感 冒药,24.7,25.8,698); insert into MedicineInfo values(95270006,川贝枇杷膏,枇杷膏,1*1,止咳药 ,21,22.8,900); if exists (select
12、1 from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = F) where r.fkeyid = object_id(WholesaleInfo) and = FK_WHOLESAL_REFERENCE_MEDICINE) alter table WholesaleInfo drop constraint FK_WHOLESAL_REFERENCE_MEDICINE go if exists (select 1 from sysobjects where id = obje
13、ct_id(MedicineInfo) and type = U) drop table MedicineInfo go 5 / 25 文档可自由编辑打印 4.3.3 订单信息表 WholesaleInfo SQL: /*=*/ /* Table: WholeInfo */ /*=*/ create table WholesaleInfo ( wsNumber varchar(8) not null, medNumber varchar(8) null, wsMedCount int not null, constraint PK_WHOLESALEINFO primary key (wsNu
14、mber) ) go if exists (select 1 from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = F) where r.fkeyid = object_id(WholesaleInfo) and = FK_WHOLESAL_REFERENCE_MEDICINE) alter table WholesaleInfo drop constraint FK_WHOLESAL_REFERENCE_MEDICINE go if exists (select 1 fr
15、om sysobjects where id = object_id(WholesaleInfo) and type = U) drop table WholesaleInfo go alter table WholesaleInfo add constraint FK_WHOLESAL_REFERENCE_MEDICINE foreign key (medNumber) references MedicineInfo (medNumber) go 五、五、程序模块设计程序模块设计 5.1 运行界面及其效果图运行界面及其效果图 1.功能选择界面 点击“增加”按钮,跳转到增加药品信息界面; 6
16、/ 25 文档可自由编辑打印 点击“删除”按钮,跳转到删除药品信息界面; 点击“修改”按钮,跳转到修改药品信息界面; 点击“查询”按钮,跳转到查询药品信息界面; 点击“统计”按钮,跳转到统计药品信息界面; 点击“出售”按钮,跳转到出售药品信息界面。 2.删除药品信息界面 按药品编号删除药拼信息: 按药品名称删除药品信息: 3.查询药品信息界面 7 / 25 文档可自由编辑打印 按药品编号查询药品信息: 按药品进价范围查询药品信息: 4.出售药品信息界面 出售成功并生成订单写入到数据库药品订单信息表(WholesaleInfo)中: 5.2 程序代码程序代码 ManageMain.java im
17、port java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; 8 / 25 文档可自由编辑打印 public class ManageMain extends JFrame private static final long serialVersionUID = 1L; JLabel title=new JLabel(-请选择您的操作 -); JLabel insMedicineInfo=new JLabel(增加药品信息:); JButton btInsInfo=new
18、 JButton(增加); JLabel delMedicineInfo=new JLabel(删除药品信息:); JButton btDelInfo=new JButton(删除); JLabel updMedicineInfo=new JLabel(修改药品信息:); JButton btUpdInfo=new JButton(修改); JLabel queMedicineInfo=new JLabel(查询药品信息:); JButton btQueInfo=new JButton(查询); JLabel staMedicineInfo=new JLabel(统计药品信息:); JButt
19、on btStaInfo=new JButton(统计); JLabel salMedicineInfo=new JLabel(出售药品管理:); JButton btSalInfo=new JButton(出售); public ManageMain() super(药店管理系统-功能); this.title.setSize(200, 30); this.title.setLocation(200,10); this.insMedicineInfo.setSize(100,30); this.insMedicineInfo.setLocation(80,50); this.btInsInf
20、o.setSize(60,30); this.btInsInfo.setLocation(190,50); this.delMedicineInfo.setSize(100,30); this.delMedicineInfo.setLocation(260,50); this.btDelInfo.setSize(60,30); this.btDelInfo.setLocation(360,50); this.updMedicineInfo.setSize(100,30); this.updMedicineInfo.setLocation(80,90); this.btUpdInfo.setSi
21、ze(60,30); this.btUpdInfo.setLocation(190,90); this.queMedicineInfo.setSize(100,90); this.queMedicineInfo.setLocation(260,60); this.btQueInfo.setSize(60,30); this.btQueInfo.setLocation(360,90); this.staMedicineInfo.setSize(100,30); this.staMedicineInfo.setLocation(80,130); this.btStaInfo.setSize(60,
22、30); this.btStaInfo.setLocation(190,130); this.salMedicineInfo.setSize(100,30); this.salMedicineInfo.setLocation(260,130); this.btSalInfo.setSize(60,30); 9 / 25 文档可自由编辑打印 this.btSalInfo.setLocation(360,130); this.setLayout(null); this.getContentPane().add(title); this.getContentPane().add(insMedicin
23、eInfo); this.getContentPane().add(btInsInfo); this.getContentPane().add(delMedicineInfo); this.getContentPane().add(btDelInfo); this.getContentPane().add(updMedicineInfo); this.getContentPane().add(btUpdInfo); this.getContentPane().add(queMedicineInfo); this.getContentPane().add(btQueInfo); this.get
24、ContentPane().add(staMedicineInfo); this.getContentPane().add(btStaInfo); this.getContentPane().add(salMedicineInfo); this.getContentPane().add(btSalInfo); /-添加药品信息注册事件-/ btInsInfo.addActionListener(new ActionListener() Override public void actionPerformed(ActionEvent e) / TODO Auto-generated method
25、 stub InsMedicineInfo insmedicineinfo=new InsMedicineInfo(); insmedicineinfo.show(); ); /-删除药品信息注册事件-/ this.btDelInfo.addActionListener(new ActionListener() Override public void actionPerformed(ActionEvent e) / TODO Auto-generated method stub DelMedicineInfo delmedicineinfo=new DelMedicineInfo(); de
26、lmedicineinfo.show(); ); /-修改药品信息注册事件-/ this.btUpdInfo.addActionListener(new ActionListener() Override public void actionPerformed(ActionEvent e) / TODO Auto-generated method stub UpdMedicineInfo updmedicineinfo=new UpdMedicineInfo(); updmedicineinfo.show(); ); /-查询药品信息注册事件-/ this.btQueInfo.addActio
27、nListener(new ActionListener() 10 / 25 文档可自由编辑打印 Override public void actionPerformed(ActionEvent e) / TODO Auto-generated method stub QueMedicineInfo quemedicineinfo=new QueMedicineInfo(); quemedicineinfo.show(); ); /-统计药品信息注册事件-/ this.btStaInfo.addActionListener(new ActionListener() Override publi
28、c void actionPerformed(ActionEvent e) / TODO Auto-generated method stub StaMedicineInfo stamedicineinfo=new StaMedicineInfo(); stamedicineinfo.show(); ); /-出售药品信息注册事件-/ this.btSalInfo.addActionListener(new ActionListener() Override public void actionPerformed(ActionEvent e) / TODO Auto-generated met
29、hod stub SalMedicineInfo salmedicineinfo=new SalMedicineInfo(); salmedicineinfo.show(); ); this.setSize(550,230); this.setResizable(false); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisible(true); public static void main(String args) new ManageMain(); DelMedicineInfo.java import j
30、ava.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; import javax.swing.*; public class DelMedicineInfo extends JFrame 11 / 25 文档可自由编辑打印 private static final long serialVersionUID = 1L; JLabel labTitle=
31、new JLabel(-请选择删除药品信息的方法-); JLabel labMedNumber=new JLabel(请输入药品编号:); JTextField txtMedNumber=new JTextField(); JButton btnMedNumber=new JButton(确定); JLabel labMedName=new JLabel(请输入药品名称:); JTextField txtMedName=new JTextField(); JButton btnMedName=new JButton(确定); JButton btnQuit=new JButton(取消); p
32、ublic DelMedicineInfo() super(药店管理系统-删除); this.labTitle.setSize(200,30); this.labTitle.setLocation(80,10); this.labMedNumber.setSize(110,30); this.labMedNumber.setLocation(50,50); this.txtMedNumber.setSize(100,30); this.txtMedNumber.setLocation(160,50); this.btnMedNumber.setSize(60,30); this.btnMedN
33、umber.setLocation(270,50); this.labMedName.setSize(110,30); this.labMedName.setLocation(50,90); this.txtMedName.setSize(100,30); this.txtMedName.setLocation(160,90); this.btnMedName.setSize(60,30); this.btnMedName.setLocation(270,90); this.btnQuit.setSize(60,30); this.btnQuit.setLocation(150,130); t
34、his.setLayout(null); this.getContentPane().add(labTitle); this.getContentPane().add(labMedNumber); this.getContentPane().add(txtMedNumber); this.getContentPane().add(btnMedNumber); this.getContentPane().add(labMedName); this.getContentPane().add(txtMedName); this.getContentPane().add(btnMedName); th
35、is.getContentPane().add(btnQuit); /-按药品编号删除的注册事件处理-/ this.btnMedNumber.addActionListener(new DelNumberActionListener(this); /-按药品名称删除的注册事件处理-/ this.btnMedName.addActionListener(new DelNameActionListener(this); /-取消按钮事件注册-/ this.btnQuit.addActionListener(new QuitDelActionListener(this); this.setSize(
36、400,200); this.setResizable(false); 12 / 25 文档可自由编辑打印 this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisible(true); public static void main(String args) new DelMedicineInfo(); public void DelNumberActionPerformed(ActionEvent e) String MedNumber=txtMedNumber.getText(); try Class.forName
37、(com.microsoft.sqlserver.jdbc.SQLServerDriver); catch (ClassNotFoundException e1) JOptionPane.showMessageDialog(null,驱动未找到!); try String url=jdbc:sqlserver:/localhost:1433;DatabaseName=MedicineManage; String dbname=sa; String dbpassword=pwd; String sql=Delete From MedicineInfo where medNumber= +MedN
38、umber+; Connection conn=DriverManager.getConnection(url,dbname,dbpassword); Statement stmt=conn.createStatement(); stmt.executeUpdate(sql); JOptionPane.showMessageDialog(null,药品编号为+MedNumber+的药 品删除成功!); this.setVisible(false); catch(Exception e1) e1.printStackTrace(); JOptionPane.showMessageDialog(n
39、ull,按编号删除药品信息有误!); public void DelNameActionPerformed(ActionEvent e) String MedName=txtMedName.getText(); try Class.forName(com.microsoft.sqlserver.jdbc.SQLServerDriver); catch (ClassNotFoundException e1) JOptionPane.showMessageDialog(null,驱动未找到!); try String url=jdbc:sqlserver:/localhost:1433;Datab
40、aseName=MedicineManage; String dbname=sa; String dbpassword=pwd; String sql=Delete From MedicineInfo where medName like 13 / 25 文档可自由编辑打印 %+MedName+%; Connection conn=DriverManager.getConnection(url,dbname,dbpassword); Statement stmt=conn.createStatement(); stmt.executeUpdate(sql); JOptionPane.showM
41、essageDialog(null,药品名称为+MedName+的药品 删除成功!); this.setVisible(false); catch(Exception e1) e1.printStackTrace(); JOptionPane.showMessageDialog(null,按名称删除药品信息有误!); public void QuitDelActionPerformed(ActionEvent e) this.setVisible(false); class DelNumberActionListener implements ActionListener DelMedicin
42、eInfo delmedicineinfo; public DelNumberActionListener(DelMedicineInfo delmedicineinfo) this.delmedicineinfo=delmedicineinfo; Override public void actionPerformed(ActionEvent e) / TODO Auto-generated method stub delmedicineinfo.DelNumberActionPerformed(e); class DelNameActionListener implements Actio
43、nListener DelMedicineInfo delmedicineinfo; public DelNameActionListener(DelMedicineInfo delmedicineinfo) this.delmedicineinfo=delmedicineinfo; Override public void actionPerformed(ActionEvent e) / TODO Auto-generated method stub delmedicineinfo.DelNameActionPerformed(e); class QuitDelActionListener
44、implements ActionListener DelMedicineInfo delmedicineinfo; public QuitDelActionListener(DelMedicineInfo delmedicineinfo) this.delmedicineinfo=delmedicineinfo; Override 14 / 25 文档可自由编辑打印 public void actionPerformed(ActionEvent e) / TODO Auto-generated method stub delmedicineinfo.QuitDelActionPerforme
45、d(e); QueMedicineInfo.java import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.sql.*; import javax.swing.*; public class QueMedicineInfo extends JFrame private static final long serialVersionUID = 1L; JLabel byMedNumber=new JLabel(按药品编号查找:); JTextField txtNumber=new
46、JTextField(); JButton btnNumber=new JButton(确定); JLabel byMedInPrice=new JLabel(按药品进价查找:); JTextField txtInPrice=new JTextField(); JLabel labTo=new JLabel(到); JTextField txtInPrice2=new JTextField(); JButton btnInPrice=new JButton(确定); JLabel msg=new JLabel(-下面是您查询的药品信息-); JTextArea txtArea=new JTex
47、tArea(); JScrollPane scrollpane=new JScrollPane(); JButton btnQuit=new JButton(取消); public QueMedicineInfo() super(药店管理系统-查询); this.byMedNumber.setSize(110,30); this.byMedNumber.setLocation(170,10); this.txtNumber.setSize(100,30); this.txtNumber.setLocation(290, 10); this.btnNumber.setSize(60,30); t
48、his.btnNumber.setLocation(400,10); this.byMedInPrice.setSize(110,30); this.byMedInPrice.setLocation(500,10); this.txtInPrice.setSize(100,30); this.txtInPrice.setLocation(620,10); this.labTo.setSize(35,30);/ this.labTo.setLocation(740, 10); this.txtInPrice2.setSize(100,30); this.txtInPrice2.setLocati
49、on(780, 10); this.btnInPrice.setSize(60,30); this.btnInPrice.setLocation(890,10); this.msg.setSize(200,30); this.msg.setLocation(400,50); 15 / 25 文档可自由编辑打印 this.scrollpane.setBounds(50,90,900,100); /this.txtArea.setSize(900,100); /this.txtArea.setLocation(50,90); this.btnQuit.setSize(60,30); this.bt
50、nQuit.setLocation(500,200); this.setLayout(null); this.getContentPane().add(byMedNumber); this.getContentPane().add(txtNumber); this.getContentPane().add(btnNumber); this.getContentPane().add(byMedInPrice); this.getContentPane().add(txtInPrice); this.getContentPane().add(labTo); this.getContentPane(
51、).add(txtInPrice2); this.getContentPane().add(btnInPrice); this.getContentPane().add(msg); this.getContentPane().add(scrollpane); scrollpane.setViewportView(txtArea); /this.getContentPane().add(txtArea); this.getContentPane().add(btnQuit); /-按药品编号查询按钮的事件注册-/ this.btnNumber.addActionListener(new Numb
52、erActionListener(this); /-按药品进价查询按钮的事件注册-/ this.btnInPrice.addActionListener(new InPriceActionListener(this); /-取消按钮事件注册-/ this.btnQuit.addActionListener(new QuitActionListener(this); this.setSize(1100,300); this.setResizable(false); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisib
53、le(true); /主函数 public static void main(String args) new QueMedicineInfo(); /-按药品编号查询的方法-/ public void QueByNumberActionPerformed(ActionEvent arg0) String Number=txtNumber.getText(); try Class.forName(com.microsoft.sqlserver.jdbc.SQLServerDriver); catch(ClassNotFoundException e) JOptionPane.showMessa
54、geDialog(null,驱动未找到!); try String 16 / 25 文档可自由编辑打印 url=jdbc:sqlserver:/localhost:1433;DatabaseName=MedicineManage; String dbname=sa; String dbpassword=pwd; String sql=Select * From MedicineInfo where medNumber=+Number+; Connection conn=DriverManager.getConnection(url,dbname,dbpassword); Statement s
55、tmt=conn.createStatement(); ResultSet rs=stmt.executeQuery(sql); while(rs.next() String mednumber=rs.getString(medNumber); String medname=rs.getString(medName); String medshortname=rs.getString(medShortName); String mednors=rs.getString(medNors); String medcate=rs.getString(medCate); float medinpric
56、e=rs.getFloat(medInPrice); float medwholesaleprice=rs.getFloat(medWholesalePrice); int medcount=rs.getInt(medCount); this.txtArea.setText(药品编号t 药品名称t 药品通称t 药品规格 t 药品类别t 药品进价t 药品批发价t 药品库存n + mednumber+t+medname+t+medshortname+t+mednors+t+medcate+t+med inprice+t+medwholesaleprice+t+medcount); catch(Ex
57、ception e) e.printStackTrace(); public void QueByInPriceActionPerformed(ActionEvent arg0) String InPrice=txtInPrice.getText(); String InPrice2=txtInPrice2.getText(); try Class.forName(com.microsoft.sqlserver.jdbc.SQLServerDriver); catch(ClassNotFoundException e) JOptionPane.showMessageDialog(null,驱动
58、未找到!); try String url=jdbc:sqlserver:/localhost:1433;DatabaseName=MedicineManage; String dbname=sa; String dbpassword=pwd; String sql=Select * From MedicineInfo where medInPrice between +InPrice+ and +InPrice2+; Connection conn=DriverManager.getConnection(url,dbname,dbpassword); Statement stmt=conn.
59、createStatement(); ResultSet rs=stmt.executeQuery(sql); 17 / 25 文档可自由编辑打印 txtArea.setText(药品编号t 药品名称t 药品通称t 药品规格t 药品类别 t 药品进价t 药品批发价t 药品库存n); while(rs.next() String mednumber=rs.getString(medNumber); String medname=rs.getString(medName); String medshortname=rs.getString(medShortName); String mednors
60、=rs.getString(medNors); String medcate=rs.getString(medCate); float medinprice=rs.getFloat(medInPrice); float medwholesaleprice=rs.getFloat(medWholesalePrice); int medcount=rs.getInt(medCount); /JOptionPane.showMessageDialog(null,药品编号:+mednumber+n 药品名称:+medname+n 药品通称:+medshortname /+n 药品规格:+mednors
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年外研版四年级数学下册阶段测试试卷含答案
- 2025年外研版九年级数学下册月考试卷
- 二零二五年离婚协议财产分割与各自承担债务明确责任约定3篇
- 2025年鲁人版八年级地理上册阶段测试试卷含答案
- 二手房不过户买卖协议规范文本版B版
- 2025年度智能化住宅小区建设报建代理服务合同3篇
- 2025年人教版高二物理下册月考试卷含答案
- 2025年沪科版选修4化学下册阶段测试试卷含答案
- 2025年人教A新版九年级地理下册月考试卷含答案
- 2025年冀教版选修3化学上册月考试卷
- 河北省承德市2023-2024学年高一上学期期末物理试卷(含答案)
- 山西省2024年中考物理试题(含答案)
- 矫形器师(三级)试题
- 2024-2030年中国硅氧负极材料行业竞争状况与发展形势预测报告
- 2025届天津市河西区物理高一第一学期期末检测试题含解析
- 登高车高空作业施工方案
- 2024年广东揭阳市揭西县集中招聘事业单位人员85人历年高频考题难、易错点模拟试题(共500题)附带答案详解
- 猪肉配送投标方案(技术方案)
- 财务尽职调查资料清单-立信
- 2024至2030年中国柔性电路板(FPC)行业市场深度分析及发展趋势预测报告
- IGCSE考试练习册附答案
评论
0/150
提交评论