在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 基于ssm+bootstrap+maven+mysql的超市进销存管理系统,代码齐全

基于ssm+bootstrap+maven+mysql的超市进销存管理系统,代码齐全

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.26M
  • 下载次数:10
  • 浏览次数:148
  • 发布时间:2021-01-20
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
毕业设计作品,需要的可以看看,用了ajax进行校验,jsp规划不是很好,望指点,文件里面包含sql文件
【实例截图】
【核心代码】
85b56eda-dc1c-47a2-93e1-46e5a890a5de
└── market-master
└── market
├── market.sql
├── pom.xml
├── src
│   └── main
│   ├── java
│   │   ├── com
│   │   │   └── hbh
│   │   │   ├── controller
│   │   │   │   ├── CkinController.java
│   │   │   │   ├── CkretireController.java
│   │   │   │   ├── CusRetireController.java
│   │   │   │   ├── CustomController.java
│   │   │   │   ├── KcxxController.java
│   │   │   │   ├── ManagerController.java
│   │   │   │   ├── MCkinController.java
│   │   │   │   ├── MCkretireController.java
│   │   │   │   ├── MCusRetireController.java
│   │   │   │   ├── MCustomController.java
│   │   │   │   ├── MKcxxController.java
│   │   │   │   ├── MProductController.java
│   │   │   │   ├── MSaleController.java
│   │   │   │   ├── MSupplyController.java
│   │   │   │   ├── MTypeController.java
│   │   │   │   ├── ProductController.java
│   │   │   │   ├── SaleController.java
│   │   │   │   ├── StaffController.java
│   │   │   │   ├── SupplyController.java
│   │   │   │   └── TypeController.java
│   │   │   ├── dao
│   │   │   │   ├── CkinMapper.java
│   │   │   │   ├── CkretireMapper.java
│   │   │   │   ├── CusRetireMapper.java
│   │   │   │   ├── CustomMapper.java
│   │   │   │   ├── KcxxMapper.java
│   │   │   │   ├── ManagerMapper.java
│   │   │   │   ├── ProductMapper.java
│   │   │   │   ├── SaleMapper.java
│   │   │   │   ├── StaffMapper.java
│   │   │   │   ├── SupplyMapper.java
│   │   │   │   └── TypeMapper.java
│   │   │   ├── entity
│   │   │   │   ├── CkinExample.java
│   │   │   │   ├── Ckin.java
│   │   │   │   ├── CkretireExample.java
│   │   │   │   ├── Ckretire.java
│   │   │   │   ├── CusRetireExample.java
│   │   │   │   ├── CusRetire.java
│   │   │   │   ├── CustomExample.java
│   │   │   │   ├── Custom.java
│   │   │   │   ├── KcxxExample.java
│   │   │   │   ├── Kcxx.java
│   │   │   │   ├── ManagerExample.java
│   │   │   │   ├── Manager.java
│   │   │   │   ├── ProductExample.java
│   │   │   │   ├── Product.java
│   │   │   │   ├── SaleExample.java
│   │   │   │   ├── Sale.java
│   │   │   │   ├── StaffExample.java
│   │   │   │   ├── Staff.java
│   │   │   │   ├── SupplyExample.java
│   │   │   │   ├── Supply.java
│   │   │   │   ├── TypeExample.java
│   │   │   │   └── Type.java
│   │   │   ├── service
│   │   │   │   ├── ICkinService.java
│   │   │   │   ├── ICkretireService.java
│   │   │   │   ├── ICusRetireService.java
│   │   │   │   ├── ICustomService.java
│   │   │   │   ├── IKcxxService.java
│   │   │   │   ├── IManagerService.java
│   │   │   │   ├── imp
│   │   │   │   │   ├── CkinServiceImp.java
│   │   │   │   │   ├── CkretireServiceImp.java
│   │   │   │   │   ├── CusRetireServiceImp.java
│   │   │   │   │   ├── CustomServiceImp.java
│   │   │   │   │   ├── KcxxServiceImp.java
│   │   │   │   │   ├── ManagerServiceImp.java
│   │   │   │   │   ├── ProductServiceImp.java
│   │   │   │   │   ├── SaleServiceImp.java
│   │   │   │   │   ├── StaffServiceImp.java
│   │   │   │   │   ├── SupplyMapperServiceImp.java
│   │   │   │   │   └── TypeServiceImp.java
│   │   │   │   ├── IProductService.java
│   │   │   │   ├── ISaleService.java
│   │   │   │   ├── IStaffService.java
│   │   │   │   ├── ISupplyMapperService.java
│   │   │   │   └── ITypeService.java
│   │   │   └── tools
│   │   │   └── Constants.java
│   │   ├── generator
│   │   │   └── TestMybatisGenerator.java
│   │   └── my.xml
│   ├── resources
│   │   ├── db.properties
│   │   ├── log4j.properties
│   │   ├── mapper
│   │   │   ├── CkinMapper.xml
│   │   │   ├── CkretireMapper.xml
│   │   │   ├── CusRetireMapper.xml
│   │   │   ├── CustomMapper.xml
│   │   │   ├── KcxxMapper.xml
│   │   │   ├── ManagerMapper.xml
│   │   │   ├── ProductMapper.xml
│   │   │   ├── SaleMapper.xml
│   │   │   ├── StaffMapper.xml
│   │   │   ├── SupplyMapper.xml
│   │   │   └── TypeMapper.xml
│   │   ├── mybatis.xml
│   │   ├── spring-mvc.xml
│   │   └── spring-mybatis.xml
│   └── webapp
│   ├── index.jsp
│   ├── statics
│   │   ├── css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── bootstrap-progressbar-3.3.4.min.css
│   │   │   ├── custom.min.css
│   │   │   ├── dropzone.min.css
│   │   │   ├── font-awesome.min.css
│   │   │   ├── green@2x.png
│   │   │   ├── green.css
│   │   │   ├── green.png
│   │   │   ├── jquery.mCustomScrollbar.min.css
│   │   │   ├── jqvmap.min.css
│   │   │   ├── maps
│   │   │   │   └── jquery-jvectormap-2.0.3.css
│   │   │   └── nprogress.css
│   │   ├── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.svg
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   ├── fontawesome-webfont.woff
│   │   │   ├── fontawesome-webfont.woff2
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   └── glyphicons-halflings-regular.woff2
│   │   ├── images
│   │   │   ├── american-express.png
│   │   │   ├── cropper.jpg
│   │   │   ├── img1.jpg
│   │   │   ├── img.jpg
│   │   │   ├── inbox.png
│   │   │   ├── logo1.png
│   │   │   ├── logo.png
│   │   │   ├── mastercard.png
│   │   │   ├── media.jpg
│   │   │   ├── paypal.png
│   │   │   ├── picture.jpg
│   │   │   ├── prod-1.jpg
│   │   │   ├── prod-2.jpg
│   │   │   ├── prod-3.jpg
│   │   │   ├── prod-4.jpg
│   │   │   ├── prod-5.jpg
│   │   │   ├── user.png
│   │   │   └── visa.png
│   │   ├── js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── custom.min.js
│   │   │   ├── daterangepicker.js
│   │   │   ├── dropzone.js
│   │   │   ├── echarts.min.js
│   │   │   ├── fastclick.js
│   │   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── moment.min.js
│   │   │   ├── nprogress.js
│   │   │   └── validator.js
│   │   └── localjs
│   │   ├── addckretire.js
│   │   ├── addcusretire.js
│   │   ├── addpro.js
│   │   ├── addsale.js
│   │   ├── maddckretire.js
│   │   ├── maddcusretire.js
│   │   ├── maddpro.js
│   │   └── maddsale.js
│   └── WEB-INF
│   ├── jsp
│   │   ├── addckin.jsp
│   │   ├── addckretire.jsp
│   │   ├── addcus.jsp
│   │   ├── addcusretire.jsp
│   │   ├── addpro.jsp
│   │   ├── addsale.jsp
│   │   ├── addsup.jsp
│   │   ├── addtype.jsp
│   │   ├── common
│   │   │   ├── footer.jsp
│   │   │   └── head.jsp
│   │   ├── editckin.jsp
│   │   ├── editckretire.jsp
│   │   ├── editcus.jsp
│   │   ├── editcusretire.jsp
│   │   ├── editkcxx.jsp
│   │   ├── editpro.jsp
│   │   ├── editSale.jsp
│   │   ├── editstaff.jsp
│   │   ├── editsup.jsp
│   │   ├── edittype.jsp
│   │   ├── getall_ckin.jsp
│   │   ├── getall_ckretire.jsp
│   │   ├── getall_cus.jsp
│   │   ├── getall_CusRetire.jsp
│   │   ├── getall.jsp
│   │   ├── getall_kcxx.jsp
│   │   ├── getall_sale.jsp
│   │   ├── getall_sup.jsp
│   │   ├── getckinbyparams.jsp
│   │   ├── getckretirebyparams.jsp
│   │   ├── getCusRetirebyparams.jsp
│   │   ├── getcustombyparams.jsp
│   │   ├── getkcxxbyparams.jsp
│   │   ├── getkcxx_data.jsp
│   │   ├── getkcxx.jsp
│   │   ├── getkcxx_num.jsp
│   │   ├── getlist.jsp
│   │   ├── getprobyparams.jsp
│   │   ├── getpro.jsp
│   │   ├── getsalebyparams.jsp
│   │   ├── getsale.jsp
│   │   ├── getsupplybyparams.jsp
│   │   ├── gettypebyparams.jsp
│   │   ├── grxx.jsp
│   │   ├── main.jsp
│   │   ├── manager
│   │   │   ├── addckin.jsp
│   │   │   ├── addckretire.jsp
│   │   │   ├── addcus.jsp
│   │   │   ├── addcusretire.jsp
│   │   │   ├── addpro.jsp
│   │   │   ├── addsale.jsp
│   │   │   ├── addstaff.jsp
│   │   │   ├── addsup.jsp
│   │   │   ├── addtype.jsp
│   │   │   ├── common
│   │   │   │   ├── footer.jsp
│   │   │   │   └── head.jsp
│   │   │   ├── echart.jsp
│   │   │   ├── editckin.jsp
│   │   │   ├── editckretire.jsp
│   │   │   ├── editcus.jsp
│   │   │   ├── editcusretire.jsp
│   │   │   ├── editkcxx.jsp
│   │   │   ├── editmanager.jsp
│   │   │   ├── editpro.jsp
│   │   │   ├── editSale.jsp
│   │   │   ├── editstaff.jsp
│   │   │   ├── editsup.jsp
│   │   │   ├── edittype.jsp
│   │   │   ├── getall_ckin.jsp
│   │   │   ├── getall_ckretire.jsp
│   │   │   ├── getall_cus.jsp
│   │   │   ├── getall_CusRetire.jsp
│   │   │   ├── getall.jsp
│   │   │   ├── getall_kcxx.jsp
│   │   │   ├── getall_sale.jsp
│   │   │   ├── getall_staff.jsp
│   │   │   ├── getall_sup.jsp
│   │   │   ├── getckinbyparams.jsp
│   │   │   ├── getckretirebyparams.jsp
│   │   │   ├── getCusRetirebyparams.jsp
│   │   │   ├── getcustombyparams.jsp
│   │   │   ├── getkcxxbyparams.jsp
│   │   │   ├── getkcxx_data.jsp
│   │   │   ├── getkcxx.jsp
│   │   │   ├── getkcxx_num.jsp
│   │   │   ├── getlist.jsp
│   │   │   ├── getprobyparams.jsp
│   │   │   ├── getpro.jsp
│   │   │   ├── getsalebyparams.jsp
│   │   │   ├── getsale.jsp
│   │   │   ├── getstaffbyparams.jsp
│   │   │   ├── getsupplybyparams.jsp
│   │   │   ├── gettypebyparams.jsp
│   │   │   ├── grxx.jsp
│   │   │   ├── main.jsp
│   │   │   └── managerlogin.jsp
│   │   └── stafflogin.jsp
│   └── web.xml
└── workformyself
└── chaoshi
└── target
└── m2e-wtp
└── web-resources

34 directories, 255 files

标签:

实例下载地址

基于ssm+bootstrap+maven+mysql的超市进销存管理系统,代码齐全

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警