服装销售管理语言课程设计服装销售系统_第1页
服装销售管理语言课程设计服装销售系统_第2页
服装销售管理语言课程设计服装销售系统_第3页
服装销售管理语言课程设计服装销售系统_第4页
服装销售管理语言课程设计服装销售系统_第5页
已阅读5页,还剩18页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

(服装销售管理)语言课程设计服装销售系统(1)系统包含三类用户:管理员、店长、销售员。(2)向管理员提供以下功能:自身密码修改、其他用户添加删除、用户信息修改、统计。商品信息添加、修改、删除、查找、统计。(3)向店长提供以下功能:登录、注销、自身密码修改、自身信息修改,商品信息修改、息。(4)向销售员提供以下功能:商品浏览、查找、出售,查看自己本日报表、本月报表。2.需求分析用户与商品信息要采用文件存储,因而要提供文件的输入、输出功能,要实现用户的添加、修改、删除,商品信息的添加、修改、删除、查找等,需要提供相应的信息添加、删除、修改与查找功能;要实现商品浏览功能,需要提供显示操作;另外,还要提供键盘式选择菜单以实现功能选择。3.总体设计1.【整体E-R图3-1】服装管理管理员店长销售员退出用户用户显示所退出自身商品营业密码商品商品出售查看本信息信息员业修改浏览查找月报表图3-12.【程序中典型的流程图】(一)添加模块(1)分析:信息添加模块职工的基本信息包括:用户、商品基本信息,对它们输入后,要存进原文件,流程图(图3-2)如下。图3-2(二)浏览模块(1)分析:浏览功能首先需要查找信息是否存在,在查找时,因为磁盘文件无序,所以采用直接查找的办法。在容错上有较好的能力,输错时系统会有提示,也会作出相应的反映。算法和以上的分程序有相同的优点。流程图如下(图3-3打开文件否开始图3-3(三)查询模块(1)分析:基本信息的查询按查询方式:按商品的名称查询,可供选择的方式比较丰富。但本程序只使用了一种。在查询小模块中采用了直接查找的方法,这主要是由于磁盘文件无序的缘故。程序在选择结构上采用了if和else的嵌套形式,看起来有点繁杂(图3-4)图3-4(四)删除模块(1)分析:商品信息存放在须将该文件全部取出来,在内存中把要删掉的内文件打开设置一个标示符,对有这些标识符的记录在下次输入时跳过,在新商品信息输入时,将其覆盖就行了。在对文件进行删除时,虑到很多方面,如:查询不到时系统该如何处理等。人性化设计有在删除之前询流程图(图3-5)如下:查找商图3-5五)修改模块(1)分析:修改与删除程序相似,管理员信息存放在磁盘中,程序须将该可以改进(图2-6)。是否继续图3-64.详细设计是否查找到1.欢迎界面voidWeleMenu()voidWeleMenu(){printf("---------------服装销售系统-----------\n");printf("系统功能说明:\n");printf("管理员功能:\n");printf("(1)自身密码修改\n");printf("(2)用户信息管理:添加,修改,删除,查询\n");printf("(3)商品信息管理:添加,修改,查询,删除\n");printf("(4)退出登陆系统\n");printf("店长功能:\n");printf("(1)自身密码修改\n");printf("(2)商品信息管理:添加,修改,查询,删除\n");printf("(3)销售报表显示:日销售报表,月销售报表,销售员销售报表\n");printf("(4)退出登陆系统\n");printf("销售员功能:\n");printf("(1)商品浏览,查询,商品销售\n");printf("(2)自己商品销售报表显示:日销售报表,月销售报表\n");printf("(3)退出登陆系统\n");printf("--------------谢谢使用--------------------\n");printf("(注:管理员,店长,用户登陆的账号分别是admin,boss,sell初始密码和账号一致)\n");};欢迎界面运行如下(图4-1):图4-12.登陆模块voidSystemLogin()函数voidSystemLogin(){//所有用户身份调用的登陆函数charuserName[20],password[20];intisLogin=0;SystemUser*tmpUser;printf("请输入你的系统用户帐号:");scanf("%s",userName);printf("\n请输入你的系统用户密码:");scanf("%s",password);tmpUser=pSystemUserHead;while(NULL!=tmpUser){if(0==strcmp(tmpUser->userName,userName)){if(0==strcmp(tmpUser->password,password)){isLogin=1;strcpy(currentUser,tmpUser->userName);currentUserType=tmpUser->userType;switch(currentUserType){caseADMIN_USER_TYPE:AdminOperationMenu();break;caseBOSS_USER_TYPE:BossOperationMenu();break;caseSELL_USER_TYPE:SellOperationMenu();break;default:break;}}else{printf("对不起,你输入的密码错误!\n");SystemLogin();//用户名正确,密码错误}}tmpUser=tmpUser->next;}if(isLogin!=1){printf("对不起,该用户不存在\n");//遍历了所有用户都没有找到用户SystemLogin();}}运算显示如下(图4-2):图4-23.管理员功能模块(1)管理员欢迎界面voidAdminOperationMenu()函数voidAdminOperationMenu(){intselect;while(1){printf("亲爱的管理员%s同志,欢迎使用本系统,你拥有下面所有功能:\n",currentUser);printf("(1)自身密码修改\n");printf("(2)用户信息管理:添加,修改,查询,删除\n");printf("(3)商品信息管理:添加,修改,查询,删除\n");printf("(4)退出系统\n");printf("请输入上面功能对应的序号进行功能选择:");scanf("%d",&select);switch(select){case1:ChangePassword();continue;case2:UserManage();continue;case3:ProductsManage();Continue;case4:ExitSystem();break;default:break;}}};运算显示如下(图4-3):图4-3(2)自身密码修改(调用密码修改函数ChangePassword();)//密码修改函数voidChangePassword(){charnewPassword1[20],newPassword2[20];SystemUser*tmpUser;printf("请输入你的新密码:");scanf("%s",newPassword1);printf("请再次输入你的新密码:");scanf("%s",newPassword2);if(0!=strcmp(newPassword1,newPassword2)){printf("对不起,你两次输入的密码不一致,修改失败!\n");return;}tmpUser=pSystemUserHead;while(NULL!=tmpUser){if(0==strcmp(tmpUser->userName,currentUser)){strcpy(tmpUser->password,newPassword1);printf("密码修改成功!\n");break;}tmpUser=tmpUser->next;}};运算显示如下(图4-4):图4-4(2)用户信息管理:添加,修改,删除,查询//用户信息管理:添加,修改,删除,查询//voidUserManage(){//用户信息函数//intselect;//管理员显示模块//while(1){printf("亲爱的管理员%s同志,你目前进入的是用户信息管理功能:\n",currentUser);printf("(1)用户信息查看\n");printf("(2)用户信息添加\n");printf("(3)用户信息修改\n");printf("(4)用户信息删除\n");printf("(5)返回上级菜单\n");printf("(6)退出登陆系统\n");printf("请输入上面功能对应的序号进行功能选择:");scanf("%d",&select);switch(select){case1:UserInfoView();//调用用户信息查看的函数//continue;case2:UserInfoAdd();//调用用户信息添加函数//continue;case3:UserInfoModify();//调用用户信息修改函数//continue;case4:UserInfoDelete();//调用用户信息删除函数//continue;case5:AdminOperationMenu();//返回上级系统//break;case6:ExitSystem();//退出登陆//break;default:break;}}};运算显示如下(图4-5):图4-5//用户信息查看函数//voidUserInfoView(){SystemUser*tmpUser;tmpUser=pSystemUserHead;printf("亲爱的管理员%s,你好,你查看的所有用户信息如下:\n",currentUser);printf("用户名\t密码\t用户类型(1代表管理员,2代表店长,3代表销售员)\n");while(NULL!=tmpUser){printf("%s\t%s\t%d\n",tmpUser->userName,tmpUser->password,tmpUser->userType);tmpUser=tmpUser->next;}};运算显示如下(图4-6)://用户信息添加函数//voidUserInfoAdd(){SystemUsertmpUser;printf("亲爱的管理员%s,请依次输入用户信息:\n",currentUser);printf("用户名:");scanf("%s",);printf("用户密码:");scanf("%s",);printf("用户类型(1代表管理员,2代表店长,3代表销售员):");scanf("%d",&);=NULL;if(FUNCTION_SUCCESS==AddUser(&tmpUser))printf("用户信息添加成功!\n");};运算显示如下(图4-7):图4-7//用户信息修改函数//voidUserInfoModify(){charuserName[20];SystemUser*pUser;printf("亲爱的管理员%s,请输入要修改的用户帐号:\n",currentUser);scanf("%s",userName);pUser=pSystemUserHead;while(NULL!=pUser){if(0==strcmp(pUser->userName,userName)){printf("请输入新的帐号:");scanf("%s",pUser->userName);printf("请输入新的密码:");scanf("%s",pUser->password);printf("请输入新的用户类型(1代表管理员,2代表店长,3代表销售员):");scanf("%d",&pUser->userType);

printf("用户信息修改成功\n");

return;}pUser=pUser->next;}printf("对不起,没有你查找的用户信息!\n");};运算显示如下(图4-8):图4-8//用户信息删除函数//voidUserInfoDelete(){SystemUser*pUserA,*pUserB;charuserName[20];printf("亲爱的管理员%s朋友,你好,你现在进入的用户信息删除功能:\n",currentUser);printf("请输入你要删除的用户名:\n");scanf("%s",userName);pUserA=pUserB=pSystemUserHead;//pUserB指向要删除的记录,pUserA指向前一条记录if(NULL==pUserB)return;while(NULL!=pUserB){if(0==strcmp(userName,pUserB->userName)){if(pUserB==pSystemUserHead&&pUserB->next==NULL){//如果系统只有一条商品信息free(pSystemUserHead);pSystemUserHead=NULL;printf("用户信息删除成功!\n");return;}pUserA->next=pUserB->next;if(pSystemUserHead==pUserB)pSystemUserHead=pUserB->next;free(pUserB);printf("用户信息删除成功!\n");return;}else{pUserA=pUserB;pUserB=pUserB->next;}}printf("对不起,不存在该帐号的用户信息!");};运算显示如下(图4-9):图4-9(3)商品信息管理:添加,修改,查询,删除//商品管理模块//voidProductsManage(){intselect;while(1){printf("亲爱的%s朋友,你好,你现在进入的是商品管理功能,你可以选择以下功能:\n",currentUser);printf("(1)商品信息查看\n");printf("(2)商品信息查找\n");printf("(3)商品信息添加\n");printf("(4)商品信息修改\n");printf("(5)商品信息删除\n");printf("(6)返回上一级菜单\n");printf("(7)退出登陆系统\n");printf("请选择应的操作编号:");scanf("%d",&select);switch(select){case1:ProductsView();//调用商品查看函数//continue;case2:ProductFind();//调用商品信息查找函数//continue;case3:InputAndAddProduct();//调用商品添加函数//continue;case4:ModifyProduct();//调用商品修改函数//continue;case5:DeleteProduct();//调用删除商品信息函数//continue;case6:switch(currentUserType){//返回上一级//caseADMIN_USER_TYPE:

AdminOperationMenu();

break;caseBOSS_USER_TYPE:

BossOperationMenu();

break;caseSELL_USER_TYPE:

SellOperationMenu();

break;default:break;}break;case7:ExitSystem();break;default:break;}}};运算显示如下(图4-10):图4-10//商品的查看函数//voidProductsView(){Products*tmpProduct;inti;i=1;tmpProduct=pProductHead;if(NULL==tmpProduct)printf("对不起,目前还没有商品信息");else{while(NULL!=tmpProduct){printf("第%d件商品信息如下:\n",i);printf("商品编号:%d\n",tmpProduct->productId);printf("商品名称:%s\n",tmpProduct->productName);printf("商品型号:%s\n",tmpProduct->productType);printf("商品厂家:%s\n",tmpProduct->productCompany);printf("商品价格:%f\n",tmpProduct->productPrice);printf("商品数量:%d\n",tmpProduct->productCount);printf("商品附加信息:%s\n",tmpProduct->memo);tmpProduct=tmpProduct->next;i++;}}};运算显示如下(图4-11):图4-11//商品查找函数//voidProductFind(){Products*tmpProduct;intfindWay,productId;charproductName[20];printf("亲爱的%s朋友,你好,你现在进入的商品查询功能:\n",currentUser);printf("请选择查询方式:1--按商品编号查询2--按商品名称查询\n");scanf("%d",&findWay);tmpProduct=pProductHead;switch(findWay){case1:printf("请输入查询的商品编号:");scanf("%d",&productId);while(NULL!=tmpProduct){if(productId==tmpProduct->productId){printf("你查询的商品编号为%d的商品信息如下:\n",productId);printf("商品名称:%s\n",tmpProduct->productName);printf("商品型号:%s\n",tmpProduct->productType);printf("商品厂家:%s\n",tmpProduct->productCompany);printf("商品价格:%f\n",tmpProduct->productPrice);printf("商品数量:%d\n",tmpProduct->productCount);printf("商品附加信息:%s\n",tmpProduct->memo);return;}tmpProduct=tmpProduct->next;}printf("对不起,不存在该商品编号的商品!\n");break;case2:printf("请输入查询的商品名称:");scanf("%s",productName);while(NULL!=tmpProduct){if(0==strcmp(tmpProduct->productName,productName)){printf("你要查询的商品名称为%s的商品信息如下:\n",productName);printf("商品名称:%s\n",tmpProduct->productName);printf("商品型号:%s\n",tmpProduct->productType);printf("商品厂家:%s\n",tmpProduct->productCompany);printf("商品价格:%f\n",tmpProduct->productPrice);printf("商品数量:%d\n",tmpProduct->productCount);printf("商品附加信息:%s\n",tmpProduct->memo);return;}tmpProduct=tmpProduct->next;}printf("对不起,不存在该商品编号的商品!\n");break;default:break;}}运算显示如下(图4-12):

图4-12//商品添加函数//voidInputAndAddProduct(){Productsproduct;printf("亲爱的%s朋友,你好,请依次输入新商品的信息:\n",currentUser);printf("商品名称:");scanf("%s",);printf("商品型号:");scanf("%s",);printf("商品制造商:");scanf("%s",);printf("商品价格:");scanf("%f",&);printf("商品数量:");scanf("%d",&);printf("商品附加信息:");scanf("%s",);=NULL;if(FUNCTION_SUCCESS==AddProduct(&product))printf("商品信息添加成功!\n");};运算显示如下(图4-15):图4-15//商品修改函数//voidModifyProduct(){intproductId;//待修改的商品编号Products*tmpProduct;printf("亲爱的%s朋友,你好,你现在进入的商品信息修改功能:\n",currentUser);

printf("请输入要修改的商品编号:");scanf("%d",&productId);tmpProduct=pProductHead;if(NULL==tmpProduct)return;while(NULL!=tmpProduct){if(productId==tmpProduct->productId){printf("商品编号%d的商品信息如下:\n",productId);

printf("商品名称:%s\n",tmpProduct->productName);

printf("商品型号:%s\n",tmpProduct->productType);

printf("商品厂家:%s\n",tmpProduct->productCompany);

printf("商品价格:%f\n",tmpProduct->productPrice);

printf("商品数量:%d\n",tmpProduct->productCount);

printf("商品附加信息:%s\n",tmpProduct->memo);

printf("下面请对照修改该商品的相应信息:\n");

printf("新的商品名称:");scanf("%s",tmpProduct->productName);printf("新的商品型号:");scanf("%s",tmpProduct->productType);printf("新的商品厂家:");scanf("%s",tmpProduct->productCompany);printf("新的商品价格:");scanf("%f",&tmpProduct->productPrice);printf("新的商品数量:");scanf("%d",&tmpProduct->productCount);printf("新的商品附加信息:");scanf("%s",tmpProduct->memo);printf("商品信息修改成功!\n");break;}tmpProduct=tmpProduct->next;}};//商品删除函数//voidDeleteProduct(){intproductId=0;Products*tmpProductA,*tmpProductB;printf("亲爱的%s朋友,你好,你现在进入的商品删除功能:\n",currentUser);printf("请输入你要删除的商品编号:\n");scanf("%d",&productId);tmpProductA=tmpProductB=pProductHead;//tmpProductB指向要删除的记录,tmpProductA指向前一条记录if(NULL==tmpProductB)return;while(NULL!=tmpProductB){if(tmpProductB->productId==productId){if(tmpProductB==pProductHead&&tmpProductB->next==NULL){//如果系统只有一条商品信息free(pProductHead);pProductHead=NULL;printf("商品信息删除成功!\n");return;}tmpProductA->next=tmpProductB->next;if(pProductHead==tmpProductB)pProductHead=tmpProductB->next;free(tmpProductB);printf("商品信息删除成功!\n");return;}else{tmpProductA=tmpProductB;tmpProductB=tmpProductB->next;}}printf("对不起,不存在该商品编号的信息!");};4.店长功能模块(图4-16)5.6.图4-16(1)店长欢迎界面//店长欢迎界面//voidBossOperationMenu(){intselect;while(1){printf("亲爱的店长%s同志,欢迎使用本系统,你拥有下面所有功能:\n",currentUser);printf("(1)自身密码修改\n");printf("(2)商品信息管理:添加,修改,查询,删除\n");printf("(3)销售报表显示:日报表,月报表,商品销售量报表,销售员业绩报表\n");printf("(4)退出系统\n");printf("请输入上面功能对应的序号进行功能选择:");scanf("%d",&select);switch(select){case1:ChangePassword();break;case2:ProductsManage();break;case3:ReportPrint();break;case4:ExitSystem();;break;default:break;}}};(2)密码修改,商品信息管理功能和管理员对应功能的函数的调用一致(即调用ChangePassword()roductsManage()函数)(3)销售报表显示:日报表,月报表,商品销售量报表,销售员业绩报表//销售报表显示//voidReportPrint(){intselect=0;if(SELL_USER_TYPE!=currentUserType){while(1){printf("亲爱的朋友%s,你好,你现在进入的是销售报表功能界面:\n",currentUser);printf("(1)所有商品销售情况\n");printf("(2)商品日销售报表\n");printf("(3)商品月销售报表\n");printf("(4)销售员销售报表\n");printf("(5)返回上级菜单\n");printf("(6)退出登陆系统\n");printf("请选择对应的功能号:");scanf("%d",&select);switch(select){case1:ShowAllSellReport();continue;case2:ShowDaySellReport();continue;case3:ShowMonthSellReport();continue;case4:ShowEmployeeSellReport();continue;case5:switch(currentUserType){caseADMIN_USER_TYPE:AdminOperationMenu();break;caseBOSS_USER_TYPE:BossOperationMenu();break;

default:

break;

}break;

case6:

ExitSystem();

break;

default:

break;

}}}else{while(1){printf("亲爱的销售员%s,你好,你现在进入的是销售报表功能界面:\n",currentUser);printf("(1)查看自己日销售报表\n");printf("(2)查看自己月销售报表\n");printf("(3)返回上级菜单\n");printf("(4)退出登陆系统");printf("请选择相应的功能号:");scanf("%d",&select);switch(select){case1:ShowDaySellReport();continue;case2:ShowMonthSellReport();continue;case3:SellOperationMenu();break;case4:ExitSystem();break;default:break;}}}};//日销售函数的统计//voidShowDaySellReport(){intyear,month,day;intrsCount=0;floattotalPrice=0.0,onePrice;

charproductName[20];SellInfoRecord*tmpSellInfo;printf("你好%s:当前功能将进行日销售报表显示\n",currentUser);

printf("请输入销售时间年份:");scanf("%d",&year);printf("请输入销售时间月份:");scanf("%d",&month);printf("请输入销售时间号数:");scanf("%d",&day);tmpSellInfo=pSellInfoHead;

if(NULL==tmpSellInfo)return;while(NULL!=tmpSellInfo){if(year==tmpSellInfo->year&&month==tmpSellInfo->month&&day==tmpSellInfo->day&&((SELL_USER_TYPE==currentUserType)?(0==strcmp(tmpSellInfo->userName,currentUser)):1)){rsCount++;printf("符合条件的第%d条商品销售记录信息如下:\n",rsCount);printf("销售编号:%d\n",tmpSellInfo->saleId);printf("产品编号:%d\n",tmpSellInfo->productId);getProductNameById(tmpSellInfo->productId,productName);printf("产品名称:%s\n",productName);onePrice=getPriceById(tmpSellInfo->productId);printf("商品单价:%f\n",onePrice);printf("销售数量:%d\n",tmpSellInfo->sellCount);printf("销售员:%s\n",tmpSellInfo->userName);printf("销售时间:%d年%d月%d日\n",tmpSellInfo->year,tmpSellInfo->month,tmpSellInfo->day);totalPrice+=onePrice*tmpSellInfo->sellCount;}tmpSellInfo=tmpSellInfo->next;}printf("总共有%d条符合条件的记录,销售总价%f元\n",rsCount,totalPrice);};//月销售量函数统计//voidShowMonthSellReport(){intyear,month;intrsCount=0;floattotalPrice=0.0,onePrice;charproductName[20];SellInfoRecord*tmpSellInfo;printf("你好%s:当前功能将进行月销售报表显示\n",currentUser);printf("请输入销售时间年份:");scanf("%d",&year);printf("请输入销售时间月份:");scanf("%d",&month);tmpSellInfo=pSellInfoHead;if(NULL==tmpSellInfo)return;while(NULL!=tmpSellInfo){if(year==tmpSellInfo->year&&month==tmpSellInfo->month&&((SELL_USER_TYPE==currentUserType)?(0==strcmp(tmpSellInfo->userName,currentUser)):1)){

rsCount++;printf("符合条件的第%d条商品销售记录信息如下:\n",rsCount);

printf("销售编号:%d\n",tmpSellInfo->saleId);printf("产品编号:%d\n",tmpSellInfo->productId);getProductNameById(tmpSellInfo->productId,productName);printf("产品名称:%s\n",productName);onePrice=getPriceById(tmpSellInfo->productId);printf("商品单价:%f\n",onePrice);printf("销售数量:%d\n",tmpSellInfo->sellCount);printf("销售员:%s\n",tmpSellInfo->userName);printf("销售时间:%d年%d月%d日\n",tmpSellInfo->year,tmpSellInfo->month,tmpSellInfo->day);totalPrice+=onePrice*tmpSellInfo->sellCount;}tmpSellInfo=tmpSellInfo->next;}printf("总共有%d条符合条件的记录,销售总价%f元\n",rsCount,totalPrice);};//显示销售员的业绩//voidShowEmployeeSellReport(){charuserName[20];intrsCount=0;floattotalPrice=0.0,onePrice;charproductName[20];SellInfoRecord*tmpSellInfo;printf("你好%s:当前功能将进行销售员销售报表显示\n",currentUser);printf("请输入销售员的帐户名:");scanf("%s",userName);tmpSellInfo=pSellInfoHead;if(NULL==tmpSellInfo)return;while(NULL!=tmpSellInfo){if(0==strcmp(userName,tmpSellInfo->userName)){rsCount++;printf("符合条件的第%d条商品销售记录信息如下:\n",rsCount);

printf("销售编号:%d\n",tmpSellInfo->saleId);

printf("产品编号:%d\n",tmpSellInfo->productId);

getProductNameById(tmpSellInfo->productId,productName);

printf("产品名称:%s\n",productName);onePrice=getPriceById(tmpSellInfo->productId);printf("商品单价:%f\n",onePrice);printf("销售数量:%d\n",tmpSellInfo->sellCount);

printf("销售员:%s\n",tmpSellInfo->userName);

printf("销售时间:%d年%d月%d日\n",tmpSellInfo->year,tmpSellInfo->month,tmpSellInfo->day);

totalPrice+=onePrice*tmpSellInfo->sellCount;

}tmpSellInfo=tmpSellInfo->next;}printf("总共有%d条符合条件的记录,销售总价%f元\n",rsCount,totalPrice);};//显示所有销售员的业绩//voidShowAllSellReport(){intrsCount=0;floattotalPrice=0.0,onePrice;charproductName[20];SellInfoRecord*tmpSellInfo;printf("你好%s:当前功能将进行所有销售报表显示\n",currentUser);tmpSellInfo=pSellInfoHead;if(NULL==tmpSellInfo)return;while(NULL!=tmpSellInfo){rsCount++;printf("第%d条商品销售记录信息如下:\n",rsCount);printf("销售编号:%d\n",tmpSellInfo->saleId);printf("产品编号:%d\n",tmpSellInfo->productId);getProductNameById(tmpSellInfo->productId,productName);printf("产品名称:%s\n",productName);onePrice=getPriceById(tmpSellInfo->productId);printf("商品单价:%f\n",onePrice);printf("

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论