版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
【任务6-1】定义商品类及其成员【任务描述】(1)在PyCharm集成开发环境中创建项目Unit06。(2)在项目Unit06创建Python程序文件6-1.py。(3)定义商品类Commodity。(4)定义类的多个公有属性和私有属性。(5)定义多个实例方法。(6)分别通过类名称、实例名称访问类的属性。(7)分别通过类的实例方法输出类的公有属性和私有属性值。【任务实施】1.创建PyCharm项目Unit06成功启动PyCharm后,在指定位置“D:\PycharmProject\”,创建PyCharm项目Unit06。【任务实施】2.创建Python程序文件6-1.py在PyCharm项目“Unit06”中,新建Python程序文件“6-1.py”,同时PyCharm主窗口显示程序文件“6-1.py”的代码编辑窗口,在该程序文件的代码编辑窗口也自动添加了模板内容。【任务实施】在新建文件“6-1.py”的代码编辑窗口已有模板注释内容下面,输入程序代码。classCommodity:'''商品类'''#定义类的公有属性,公共属性在类外部可以直接进行访问
commodityCode="100009177374"#定义公有类属性:商品编号
commodityName="华为Mate30Pro5G"#定义公有类属性:商品名称
commodityPrice=6899.00#定义公有类属性:价格
produceDate="2020/1/18"#定义公有类属性:生产日期【任务实施】
#定义类的私有属性,私有属性在类外部无法直接进行访问
__code="65559628242"__name="海信(Hisense)100L7"__price=79999.00__date="2020/1/6"defprintLine(self):print("-----------------------------------------------")【任务实施】
defprintCommodityPublic(self):print("商品编号:"+modityCode)print("商品名称:"+modityName)print("价格:"+"{:.2f}“.format(CmodityPrice))print("生产日期:"+CduceDate)【任务实施】
defprintCommodityPrivate(self):print("商品编号:"+self.__code)print("商品名称:"+self.__name)print("价格:"+"{:.2f}“.format(Commodity.__price))print("生产日期:"+Commodity.__date)【任务实施】针对创建的类Commodity实施以下各项操作。1.直接使用类名称访问类的公有属性直接使用类名称访问类的公有属性的代码如下:print("商品编号:"+CmodityCode)print("商品名称:"+CmodityName)print("价格:"+"{:.2f}".format(CmodityPrice))print("生产日期:"+CduceDate)其运行结果如下所示。【任务实施】
2.使用类的实例名称访问类的公有属性使用类的实例名称访问类的公有属性的代码如下:goods=Commodity()print("商品编号:"+modityCode)print("商品名称:"+modityName)print("价格:"+"{:.2f}".format(modityPrice))print("生产日期:"+duceDate)【任务实施】
3.调用类的实例方法输出类的公有属性调用类的实例方法输出类的公有属性的代码如下:goods.printCommodityPublic()4.通过类名称或类实例名称访问类的私有属性类外部通过类名称或类实例名称不能直接访问类的私有属性。【任务实施】
5.调用类的实例方法输出类的私有属性调用类的实例方法输出类的私有属性的代码如下:goods.printLine()goods.printCommodityPrivate()Commodity.printLine(goods)【任务实施】其运行结果如下所示:---------------------------------------------------------商品编号:65559628242商品名称:海信(Hisense)100L7价格:79999.00生产日期:2020/1/6---------------------------------------------------------快乐学习!高效学习!祝学习进步!【任务6-2】修改与访问类属性、建立实例属性【任务描述】(1)在项目Unit06创建Python程序文件6-2.py。(2)创建类Commodity及定义其属性和方法。(3)创建类对象goods1和goods2。(4)通过类名称Commodity调用类的实例方法
输出类初始定义的公有属性。【任务描述】(5)使用类名称Commodity修改类的公有属性,代码如下所示。CmodityCode="12563157"CmodityName="给Python点颜色青少年学编程"CmodityPrice=59.80CduceDate="2019/9/1"(6)直接使用类名称Commodity输出类修改之后的公有属性。(7)使用类实例名称goods1输出类修改之后的公有属性。【任务描述】(8)使用第2个实例名称goods2输出类修改之后的公有属性。(9)通过类名称Commodity调用类的实例方法
输出类修改之后的公有属性。(10)通过实例名称goods1调用类的实例方法
输出类修改之后的公有属性。【任务描述】(11)第2次修改类的公有属性,代码如下所示。对应代码如下:modityCode="4939815"modityName="格力KFR-72LW/NhIbB1W"modityPrice=9149.00duceDate="2019/8/8"【任务描述】(12)直接使用类名称Commodity输出类第2次修改之后的公有属性。(13)使用第1个实例名称goods1输出类第2次修改之后的公有属性。(14)使用第2个实例名称goods2输出类第2次修改之后的公有属性。(15)通过类名称Commodity调用类的实例方法
输出类第2次修改之后的公有属性。(16)分别通过实例名称goods1、goods2调用类的实例方法
输出类第2次修改之后的公有属性。【任务实施】在PyCharm项目“Unit06”中,新建Python程序文件“6-2.py”,在文件“6-2.py”的代码编辑窗口创建类Commodity及定义其属性和方法。【任务实施】classCommodity:#定义类的公有属性,公共属性在类外部可以直接进行访问
commodityCode="100009177374"#定义公有类属性:商品编号
commodityName="华为Mate30Pro5G"#定义公有类属性:商品名称
commodityPrice=6899.00#定义公有类属性:价格
produceDate="2020/1/18"#定义公有类属性:生产日期【任务实施】
#定义类的私有属性,私有属性在类外部无法直接进行访问
__code="65559628242"__name="海信(Hisense)100L7"__price=79999.00__date="2020/1/6"defprintLine(self):print("--------------------------------------------------")【任务实施】
defprintCommodityPublic(self):print("商品编号:"+modityCode)print("商品名称:"+modityName)print("价格:"+"{:.2f}“.format(modityPrice))print("生产日期:"+duceDate)【任务实施】针对创建的类Commodity实施对类属性、实例属性的修改与访问。1.创建类对象创建两个类对象goods1和goods2的代码如下:goods1=Commodity()goods2=Commodity()【任务实施】
2.通过类名称Commodity调用类的实例方法输出类初始定义的公有属性对应代码如下:Commodity.printCommodityPublic(goods1)【任务实施】3.使用类名称Commodity修改类的公有属性对应代码如下:CmodityCode="12563157"CmodityName="给Python点颜色青少年学编程"CmodityPrice=59.80CduceDate="2019/9/1"【任务实施】4.直接使用类名称Commodity输出类修改之后的公有属性对应代码如下:print("商品编号:"+CmodityCode)print("商品名称:"+CmodityName)print("价格:"+"{:.2f}".format(CmodityPrice))print("生产日期:"+CduceDate)【任务实施】5.使用类实例名称goods1输出类修改之后的公有属性对应代码如下:print("商品编号:"+modityCode)print("商品名称:"+modityName)print("价格:"+"{:.2f}".format(modityPrice))print("生产日期:"+duceDate)【任务实施】6.使用第2个实例名称goods2输出类修改之后的公有属性对应代码如下:print("商品编号:"+modityCode)print("商品名称:"+modityName)print("价格:"+"{:.2f}".format(modityPrice))print("生产日期:"+duceDate)【任务实施】7.通过类名称Commodity调用类的实例方法输出类修改之后的公有属性对应代码如下:Commodity.printCommodityPublic(goods1)8.通过实例名称goods1调用类的实例方法输出类修改之后的公有属性对应代码如下:goods1.printCommodityPublic()【任务实施】9.第2次修改类的公有属性对应代码如下:modityCode="4939815"modityName="格力KFR-72LW/NhIbB1W"modityPrice=9149.00duceDate="2019/8/8"【任务实施】10.直接使用类名称Commodity输出类第2次修改之后的公有属性对应代码如下:print("商品编号:"+CmodityCode)print("商品名称:"+CmodityName)print("价格:"+"{:.2f}".format(CmodityPrice))print("生产日期:"+CduceDate)【任务实施】11.使用第1个类实例名称goods1输出类第2次修改之后的公有属性对应代码如下:print("商品编号:"+modityCode)print("商品名称:"+modityName)print("价格:"+"{:.2f}".format(modityPrice))print("生产日期:"+duceDate)【任务实施】12.使用第2个实例名称goods2输出类第2次修改之后的公有属性对应代码如下:print("商品编号:"+modityCode)print("商品名称:"+modityName)print("价格:"+"{:.2f}".format(modityPrice))print("生产日期:"+duceDate)【任务实施】13.通过类名称Commodity调用类的实例方法输出类第2次修改之后的公有属性对应代码如下:Commodity.printCommodityPublic(goods1)其运行结果如下所示。Commodity.printCommodityPublic(goods2)【任务实施】14.分别通过类实例名称goods1、goods2调用类的实例方法
输出类第2次修改之后的公有属性对应代码如下:goods1.printCommodityPublic()goods2.printCommodityPublic()快乐学习!高效学习!祝学习进步!【任务6-3】定义与访问类的实例方法【任务描述】(1)在项目Unit06创建Python程序文件6-3.py。(2)在程序文件6-3.py中创建类对象goods。(3)在程序文件6-3.py中调用多个类的实例方法,
输出所需数据。【任务实施】在PyCharm项目Unit06中创建Python程序文件6-3.py。在程序文件6-3.py中编写程序代码,实现所需功能。编写创建类Commodity及其定义私有属性、实例方法的代码。【任务实施】classCommodity:#定义类的私有属性,私有属性在类外部无法直接进行访问
__code="100009177374"__name="华为Mate30Pro5G"__price=6899.00__date="2020/1/18"【任务实施】
#定义实例方法
defgetCode(self):returnself.__codedefgetName(self):returnself.__name【任务实施】defgetPrice(self):returnself.__pricedefgetDate(self):returnself.__datedefprintLine(self):print("--------------------------------")【任务实施】
#输出字段名
defprintField(self):print("{:^9s}".format("商品编号"),end="")print("{:^20s}".format("商品名称"),end="")print("{:^8s}".format("价格"),end="")print("{:^9s}".format("生产日期"))【任务实施】Commodity实施以下各项操作。1.创建类对象goods创建一个类对象goods,代码如下:goods=Commodity()【任务实施】2.调用多个类的实例方法,输出所需数据调用多个类的实例方法,输出所需数据的代码如下:goods.printLine()#使用类的实例方法输出商品数据goods.printField()print("{:^10s}".format(goods.getCode()),"{:^21s}".format(goods.getName()),end="")print("{:^10.2f}".format(goods.getPrice()),"{:^7s}".format(goods.getDate()))goods.printLine()【任务实施】程序6-3.py的运行结果如下图所示。快乐学习!高效学习!祝学习进步!【任务6-4】定义与访问类方法、实例方法和静态方法【任务描述】(1)在项目Unit06创建Python程序文件6-4.py。(2)在程序文件6-4.py中创建类对象goods。(3)在程序文件6-4.py中使用类的实例名称goods
调用类的实例方法和类方法。(4)在程序文件6-4.py中使用类名称Commodity
直接调用类的实例方法和类方法。(5)在程序文件6-4.py中使用类的静态方法输出商品数据。【任务实施】在PyCharm项目Unit06中创建Python程序文件6-4.py。在程序文件6-4.py中编写程序代码,实现所需功能。【任务实施】classCommodity:#定义类的私有属性,私有属性在类外部无法直接进行访问
__code="100009177374"__name="华为Mate30Pro5G"__price=6899.00__date="2020/1/18“
defprintLine(self):print("---------------------------------------")【任务实施】
#输出字段名
defprintField(self):print("{:^9s}".format("商品编号"),end="")print("{:^18s}".format("商品名称"),end="")print("{:^8s}".format("价格"),end="")print("{:^9s}".format("生产日期"))【任务实施】@classmethoddefprintData(cls):print("{:^10s}".format(cls.__code),end="")print("{:^20s}".format(cls.__name),end="")print("{:^11.2f}".format(cls.__price),end="")print("{:^7s}".format(cls.__date))【任务实施】
@staticmethoddefprintDataStatic():print("{:^10s}".format(Commodity.__code),end="")print("{:^20s}".format(Commodity.__name),end="")print("{:^11.2f}".format(Commodity.__price),end="")print("{:^7s}".format(Commodity.__date))【任务实施】针对创建的类Commodity实施以下各项操作。1.创建类对象goods创建一个类对象goods,代码如下:goods=Commodity()【任务实施】2.使用类的实例名称goods调用类的实例方法和类方法对应代码如下:goods.printLine()goods.printField()goods.printData()goods.printLine()【任务实施】其运行结果如下图所示。【任务实施】3.使用类名称Commodity直接调用类的实例方法和类方法对应代码如下:Commodity.printLine(goods)Commodity.printField(goods)Commodity.printData()Commodity.printLine(goods)【任务实施】4.使用类的静态方法输出商品数据对应代码如下:goods.printLine()goods.printField()Commodity.printDataStatic()goods.printLine()快乐学习!高效学习!祝学习进步!【任务6-5】定义与调用类的构造方法【任务描述】(1)在项目Unit06创建Python程序文件6-5.py。(2)在程序文件6-5.py定义与调用类的构造方法。【任务实施】在PyCharm项目Unit06中创建Python程序文件6-5.py。在程序文件6-5.py中编写程序代码,实现所需功能。【任务实施】classCommodity:#定义类的公有属性,基本属性在类外部可以直接进行访问
#commodityCode=""#commodityName=""#commodityPrice=0.0#produceDate=""【任务实施】
#定义类的构造方法
def__init__(self,code="",name="",price=0.0,date=""):#定义实例方法
modityCode=code#定义实例属性:商品编号
modityName=name#定义实例属性:商品名称
modityPrice=price#定义实例属性:价格
duceDate=date#定义实例属性:生产日期【任务实施】defprintLine(self):print("----------------------------------------")#输出字段名
defprintField(self):print("{:^9s}".format("商品编号"),end="")print("{:^18s}".format("商品名称"),end="")print("{:^12s}".format("价格"),end="")print("{:^4s}".format("生产日期"))【任务实施】
defprintData(self):print("{:^10s}".format(modityCode),end="")print("{:^20s}".format(modityName),end="")print("{:^8.2f}".format(modityPrice),end="")print("{:^4s}".format(duceDate[0:4])+"-",end="")print("{:^2s}".format(duceDate[5:7])+"-",end="")print("{:^2s}".format(duceDate[8:]))【任务实施】针对创建的类Commodity实施以下各项操作。1.创建第1个类实例goods1,全部参数初始化代码如下:goods1=Commodity("12550531","Python编程锦囊(全彩版)",79.80,"2019/06/01")【任务实施】2.通过第1个类实例goods1调用类实例方法输出商品数据代码如下:goods1.printLine()goods1.printField()goods1.printData()goods1.printLine()运行结果如右图所示。【任务实施】3.创建第2个类实例goods2,部分参数初始化代码如下:goods2=Commodity("100009177374","华为Mate30Pro5G")【任务实施】4.通过第2个类实例goods2调用类实例方法输出商品数据代码如下:goods2.printLine()goods2.printField()goods2.printData()goods2.printLine()运行结果如右图所示。【任务实施】5.创建第3个类实例goods3,所有参数都未初始化代码如下:goods3=Commodity()【任务实施】6.对第3个类实例goods3的属性赋值代码如下:modityCode="4939815"modityName="格力KFR-72LW/NhIbB1W"modityPrice=9149.00duceDate="2019/08/08"【任务实施】7.输出3个类实例goods1、goods2、goods3的商品名称代码如下:print("商品名称1:"+modityName)print("商品名称2:"+modityName)print("商品名称3:"+modityName)运行结果如下:商品名称1:Python编程锦囊(全彩版)商品名称2:华为Mate30Pro5G商品名称3:格力KFR-72LW/NhIbB1W【任务实施】8.通过第3个类实例goods3调用类实例方法输出商品数据代码如下:goods3.printLine()goods3.printField()goods3.printData()goods3.printLine()运行结果如下图所示。快乐学习!高效学习!祝学习进步!【任务6-6】定义类Commodity和子类Book及其数据成员【任务描述】(1)在项目Unit06创建Python程序文件6-6.py。(2)在程序文件6-6.py中定义类Commodity
和子类Book及其属性、方法。(3)应用类的属性与方法实现所需功能。【任务实施】在PyCharm项目Unit06中创建Python程序文件6-6.py。在程序文件6-6.py中编写程序代码,实现所需功能。【任务实施】classCommodity:#定义类的构造方法
def__init__(self,code="",name="",price=0.0):modityCode=codemodityName=namemodityPrice=price【任务实施】
defprintLine(self):print("----------------------------------------------")defprintInfo(self,strInfo):print("{:^50s}".format(strInfo))【任务实施】
#输出字段名
defprintField(self,endMark="\n"):print("{:^9s}".format("商品编号"),end="")print("{:^20s}".format("商品名称"),end="")print("{:^12s}".format("价格"),end=endMark)【任务实施】
defprintData(self,endMark="\n"):print("{:^10s}".format(modityCode),end="")print("{:^21s}".format(modityName),end="")print("{:^8.2f}".format(modityPrice),end=endMark)【任务实施】#定义子类classBook(Commodity):def__init__(self,code="",name="",price=0.0,publisher="",editionOrder=1):Commodity.__init__(self,code,name,price)self.bookPublisher=publisherself.bookEdition=editionOrder【任务实施】
defprintField(self):Commodity.printField(self,"")print("{:^7s}".format("出版社名称"),end="")print("{:^6s}".format("版次"))defprintData(self):Commodity.printData(self,"")print("{:^10s}".format(self.bookPublisher),end="")print("{:^6d}".format(self.bookEdition))【任务实施】
#定义子类的实例方法
defsetCode(self,code):modityCode=codedefsetName(self,name):modityName=namedefsetPrice(self,price):modityPrice=pricedefsetPublisher(self,publisher):self.bookPublisher=publisherdefsetEdition(self,edition):self.bookEdition=edition【任务实施】针对创建的类Commodity和子类Book实施以下各项操作。1.创建第1个类实例goods1,全部参数初始化创建第1个类实例goods1,全部参数初始化,其代码如下:goods1=Book("12528944","PPT设计从入门到精通",79.00,"人民邮电出版社",1)【任务实施】2.通过第1个类实例goods1调用类实例方法输出图书数据代码如下:goods1.printLine()goods1.printField()goods1.printData()goods1.printLine()运行结果如右图所示。【任务实施】3.创建第2个类实例goods2,部分参数初始化代码如下:goods2=Book("12563157","给Python点颜色青少年学编程")4.通过第2个类实例goods2调用类的实例方法给类的部分属性赋值代码如下:goods2.setPrice(59.80)goods2.setPublisher("人民邮电出版社")goods2.setEdition(1)【任务实施】5.通过第2个类实例goods2调用类实例方法输出图书数据代码如下:goods2.printLine()goods2.printField()goods2.printData()goods2.printLine()运行结果如右图所示。【任务实施】6.创建第3个类实例goods3,所有参数都未初始化代码如下:goods3=Book()【任务实施】7.通过第3个类实例goods3调用类的实例方法给类的全部属性赋值代码如下:goods3.setCode("12550531")goods3.setName("Python编程锦囊(全彩版)")goods3.setPrice(79.80)goods3.setPublisher("吉林大学出版社")goods3.setEdition(1)【任务实施】8.通过第3个类实例goods3调用类实例方法输出图书数据代码如下:goods3.printLine()goods3.printField()goods3.printData()goods3.printLine()运行结果如右图所示。快乐学习!高效学习!祝学习进步!【任务6-7】完整定义与使用1个父类Commodity和2个子类(Book、Handset)【任务描述】(1)在项目Unit06创建Python程序文件6-7.py。(2)在程序文件6-7.py中完整定义与使用1个父类Commodity和2个子类(Book、Handset)。(3)综合应用类的属性与方法计算与输出应付金额、返现金额、优惠金额、运费和实付金额。【任务实施】在PyCharm项目Unit06中创建Python程序文件6-7.py。在程序文件6-7.py中编写程序代码,实现所需功能。编写定义父类Commodity及其多个属性、方法的代码。【任务实施】classCommodity:#定义父类的构造方法
def__init__(self,code="",name="",price=0.0,quantity=0):modityCode=codemodityName=namemodityPrice=pricemodityQuantity=quantity【任务实施】
#定义父类的实例属性
@propertydefcode(self):returnself._code@code.setterdefcode(self,value):self._code=value【任务实施】
@propertydefname(self):returnself._name@name.setterdefname(self,value):self._name=value【任务实施】
@propertydefprice(self):returnself._price@price.setterdefprice(self,value):self._price=value【任务实施】
@propertydefquantity(self):returnself._quantity@quantity.setterdefquantity(self,value):ifnotisinstance(value,int):raiseValueError('购买数量应为正整数!')self._quantity=value【任务实施】
@propertydefcalculateAmount(self):amount=modityPrice*modityNumberreturnamount@propertydefamount(self):amount=self.price*self.numberreturnamount【任务实施】defprintInfo(self,strInfo):print("{:^50s}".format(strInfo))defprintField(self,endMark="\n"):print("{:^9s}".format("商品编号"),end="")print("{:^20s}".format("商品名称"),end="")print("{:^12s}".format("价格"),end=endMark)【任务实施】defprintData(self,endMark="\n"):print("{:^10s}".format(self.code),end="")print("{:^21s}".format(),end="")print("{:^8.2f}".format(self.price),end=endMark)【任务实施】编写定义子类Book及其多个属性、方法的代码。#定义第1个子类BookclassBook(Commodity):def__init__(self,code="",name="",price=0.0,publisher="",editionOrder=1):Commodity.__init__(self,code,name,price)self.bookPublisher=publisherself.bookEdition=editionOrder【任务实施】
#定义子类Book的属性
@propertydefpublisher(self):returnself._publisher@publisher.setterdefpublisher(self,value):self._publisher=value【任务实施】
@propertydefedition(self):returnself._edition@edition.setterdefedition(self,value):self._edition=value【任务实施】defprintField(self):Commodity.printField(self,"")print("{:^7s}".format("出版社名称"),end="")print("{:^16s}".format("版次"))defprintData(self):Commodity.printData(self,"")print("{:^10s}".format(self.publisher),end="")print("{:^6d}".format(self.edition))【任务实施】
@classmethoddefgetDiscountPrice(cls,rank,price):ifrank=="PLUS":discountPrice=price*0.88else:ifrank=="FAN":discountPrice=price*0.90else:discountPrice=price*0.92returndiscountPrice【任务实施】@classmethoddefgetDiscount(cls,number,price):originalTotal=number*pricediscount=0iforiginalTotal>=299:discount=15.00returndiscount【任务实施】@classmethoddefgetCashback(cls,number,price):originalTotal=number*pricereduction=int(originalTotal/100)ifreduction>0:cashback=reduction*50returncashback【任务实施】@classmethoddefgetCarriage(cls,payable):#订单金额<49,收取基础运费6元;订单金额≥49,收取基础运费0元
ifpayable<49:carriage=6.00else:carriage=0.00returncarriage【任务实施】
#输出结算数据
@classmethoddefprintSettlementData(cls,*data):print("应付金额:¥"+"{:.2f}".format(data[0]))print("运费:¥"+"{:.2f}".format(data[1]))print("返现金额:-¥"+"{:.2f}".format(data[2]))print("优惠金额:-¥"+"{:.2f}".format(data[3]))print("实付金额:¥"+"{:.2f}".format(data[4]))【任务实施】编写子类Handset及其多个属性、方法的代码。#定义第2个子类HandsetclassHandset(Commodity):def__init__(self,code="",name="",price=0.0,resolution="",screenSize=""):#在子类中使用supper()函数调用父类的__init__()方法super().__init__(self,code,name,price)self.handsetResolution=resolutionself.handsetScreenSize=screenSize【任务实施】
#定义子类Handset的属性
@propertydefresolution(self):returnself._resolution@resolution.setterdefr
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年度差旅服务与智能出行平台合作协议4篇
- 专业化国内物流服务运输协议范本(2024版)一
- 2025年度建筑工程测量监理合同协议4篇
- 2024新三板挂牌协议及证券事务顾问服务合同3篇
- 2024蓝皮合同下载
- 2025年度柴油运输企业环保设施建设合同4篇
- 2025年度环保环保设备销售与售后服务合同4篇
- 2025年度柴油生产技术改造项目合同范本4篇
- 个人房产买卖合同书稿版B版
- 2024投资担保借款保证合同范本
- 产品共同研发合作协议范本5篇
- 风水学的基础知识培训
- 2024年6月高考地理真题完全解读(安徽省)
- 吸入疗法在呼吸康复应用中的中国专家共识2022版
- 1-35kV电缆技术参数表
- 信息科技课程标准测(2022版)考试题库及答案
- 施工组织设计方案针对性、完整性
- 2002版干部履历表(贵州省)
- DL∕T 1909-2018 -48V电力通信直流电源系统技术规范
- 2024年服装制版师(高级)职业鉴定考试复习题库(含答案)
- 门诊部缩短就诊等候时间PDCA案例-课件
评论
0/150
提交评论