首页 Java N091基于SSM/Java的超市进销存管理系统
N091基于SSM/Java的超市进销存管理系统
作品编号:1106
关注人气:2042
文件包括:设计源码+数据库+论文+开题+任务书+PPT
设计大小:6.14 M
开发语言:Java
开发数据库:MySQL
开发环境:Eclipse+Tomcat8+JDK1.8
原价:900元
现价:90元
下载说明

本作品里面包括调试教程和开发工具和软件,可自行下载根据教程进行调试!

如需技术协助调试,本站收取50元作品调试费!点此申请调试

如果上面没有找到适合您需求的作品,您可联系我们为您定做,定做的作品完全按照您的功能需求来做,并且后期三包,包调试,包讲解,包修改直到通过为止。

  • 作品介绍
  • 项目目录
  • 论文目录
  • 论文预览

系统需求分析

3.1用户工作流程

进货和销售商品的时候,操作者需要对商品的库存数量进行一个查询,然后根据进货和销售对数据进行一个更新。

超市管理人员对超市员工的管理时会对超市员工进行一个查询,添加或者是修改。

3.2用户务需求

一个超市管理系统最重要的是能够让超市的管理人员从庞大,繁杂的数据中脱离出来,并且找到适合超市的管理和运营的方向,从而更好的为顾客服务。而超市中最为常见的数据就是超市的商品信息,一个超市想要经营的好,那就必须知道顾客最需要的是什么,顾客消费最多的是什么,只有抓住了顾客的消费欲望和消费理念,才能掌握好一个超市的发展方向。

我国是一个地大物博的大国家,人口众多是我国的一大特色,人口多就意味着消费市场会比其他国家更加庞大,而超市是我们日常生活中最常去的一个消费场所,大量的日常消费交易都是发生在超市,随着我国国民消费水平不断的提高,越来越多的人不只是为了日常消费而消费,越来越多的消费产品进入了消费者的眼中,而超市又是这些商品的一个大量聚集的地方,所以超市营业额是每年都在不断上涨。营业额的不断上涨就意味着大量的利润,越来越多的人选择了超市这个项目,而在竞争对手越来越多的情况下,一个超市的发展道路就是不断的提高自身管理水平和降低经营成本。所以一个好的超市管理系统最基础的就是以下几个功能:

(1)对超市商品进行管理,具体体现在对超市在售商品进行记录和管理,和对超市库存商品详细信息进行添加或者更新。

(2)对使用该系统的用户进行管理,具体为添加用户、删除用户、修改用户密码,并且对不同权限等级的用户赋予不同的操作权限,使超市内的不同权限的员工拥有不同的操作范围。

(3)对超市内的员工进行管理,不同的员工有着不同的工作区域和业务,员工管理模块可以对超市内所有员工的详细信息进行添加和更新,并对所有员工的工作进行调整。



N091基于SSM的超市进销存管理系统N091基于SSM的超市进销存管理系统N091基于SSM的超市进销存管理系统N091基于SSM的超市进销存管理系统N091基于SSM的超市进销存管理系统N091基于SSM的超市进销存管理系统
卷 软件 的文件夹 PATH 列表
卷序列号为 0008-B552
D:\TEST\源码
├─PPT
│      任文杰_1462141529_答辩ppt.pptx
│      
├─毕业论文
│      任文杰_1462141529_基于ssm技术的网上超市管理系统 - 目录.docx
│      任文杰_1462141529_基于ssm技术的网上超市管理系统.docx
│      
├─相关文档
│      任文杰_1462141529_相关文档1_任务书.doc
│      任文杰_1462141529_相关文档3_开题报告.doc
│      任文杰_1462141529_相关文档4_期中小结.doc
│      任文杰_1462141529_相关文档5_成绩表.doc
│      任文杰_1462141529_相关文档6_评审答辩表.doc
│      任文杰_1462141529_相关文档7_答辩记录.doc
│      
└─软件系统及安装使用说明
    │  任文杰_1462141529_使用说明.docx
    │  
    ├─任文杰_1462141529_数据库
    │      job_part.sql
    │      login.sql
    │      person.sql
    │      wuping.sql
    │      
    └─任文杰_1462141529_网上超市管理系统
        │  .classpath
        │  .mymetadata
        │  .project
        │  .springBeans
        │  
        ├─.myeclipse
        ├─.settings
        │      .jsdtscope
        │      com.genuitec.eclipse.core.prefs
        │      com.genuitec.eclipse.ws.prefs
        │      org.eclipse.jdt.core.prefs
        │      org.eclipse.wst.common.component
        │      org.eclipse.wst.common.project.facet.core.xml
        │      org.eclipse.wst.jsdt.ui.superType.container
        │      org.eclipse.wst.jsdt.ui.superType.name
        │      
        ├─src
        │  │  applicationContext.xml
        │  │  shiro-ehcache.xml
        │  │  
        │  ├─com
        │  │  └─user
        │  │      ├─controller
        │  │      │      JobController.java
        │  │      │      LoginController.java
        │  │      │      PersonController.java
        │  │      │      WupingController.java
        │  │      │      
        │  │      ├─dao
        │  │      │  └─imp
        │  │      │          JobDaoImp.java
        │  │      │          LoginDaoImp.java
        │  │      │          PersonDaoImp.java
        │  │      │          WupingDaoImp.java
        │  │      │          
        │  │      └─mapper
        │  │              JobMapper.java
        │  │              JobMapper.xml
        │  │              LoginMapper.java
        │  │              LoginMapper.xml
        │  │              PersonMapper.java
        │  │              PersonMapper.xml
        │  │              WupingMapper.java
        │  │              WupingMapper.xml
        │  │              
        │  └─entity
        │          Job.java
        │          Level.java
        │          Login.java
        │          Person.java
        │          ResponseUtil.java
        │          Wuping.java
        │          
        └─WebRoot
            │  index.jsp
            │  job.jsp
            │  logIn.jsp
            │  main1.jsp
            │  main2.jsp
            │  main3.jsp
            │  Person.jsp
            │  user.jsp
            │  wuping.jsp
            │  
            ├─css
            │      style.css
            │      style2.css
            │      
            ├─images
            │      banner.jpg
            │      main4.jpg
            │      
            ├─jquery-easyui-1.3.3
            │  │  changelog.txt
            │  │  easyloader.js
            │  │  jquery.easyui.min.js
            │  │  jquery.min.js
            │  │  licence_gpl.txt
            │  │  license_commercial.txt
            │  │  readme.txt
            │  │  
            │  ├─demo
            │  │  │  demo.css
            │  │  │  
            │  │  ├─accordion
            │  │  │      actions.html
            │  │  │      ajax.html
            │  │  │      basic.html
            │  │  │      datagrid_data1.json
            │  │  │      tools.html
            │  │  │      _content.html
            │  │  │      
            │  │  ├─calendar
            │  │  │      basic.html
            │  │  │      firstday.html
            │  │  │      
            │  │  ├─combo
            │  │  │      basic.html
            │  │  │      
            │  │  ├─combobox
            │  │  │      actions.html
            │  │  │      basic.html
            │  │  │      combobox_data1.json
            │  │  │      customformat.html
            │  │  │      dynamicdata.html
            │  │  │      multiple.html
            │  │  │      navigation.html
            │  │  │      remotedata.html
            │  │  │      remotejsonp.html
            │  │  │      
            │  │  ├─combogrid
            │  │  │      actions.html
            │  │  │      basic.html
            │  │  │      datagrid_data1.json
            │  │  │      initvalue.html
            │  │  │      multiple.html
            │  │  │      navigation.html
            │  │  │      
            │  │  ├─combotree
            │  │  │      actions.html
            │  │  │      basic.html
            │  │  │      initvalue.html
            │  │  │      multiple.html
            │  │  │      tree_data1.json
            │  │  │      
            │  │  ├─datagrid
            │  │  │      aligncolumns.html
            │  │  │      basic.html
            │  │  │      cellstyle.html
            │  │  │      checkbox.html
            │  │  │      clientpagination.html
            │  │  │      columngroup.html
            │  │  │      complextoolbar.html
            │  │  │      contextmenu.html
            │  │  │      custompager.html
            │  │  │      datagrid_data1.json
            │  │  │      datagrid_data2.json
            │  │  │      footer.html
            │  │  │      formatcolumns.html
            │  │  │      frozencolumns.html
            │  │  │      frozenrows.html
            │  │  │      mergecells.html
            │  │  │      products.json
            │  │  │      rowborder.html
            │  │  │      rowediting.html
            │  │  │      rowstyle.html
            │  │  │      selection.html
            │  │  │      simpletoolbar.html
            │  │  │      transform.html
            │  │  │      
            │  │  ├─datebox
            │  │  │      basic.html
            │  │  │      dateformat.html
            │  │  │      events.html
            │  │  │      validate.html
            │  │  │      
            │  │  ├─datetimebox
            │  │  │      basic.html
            │  │  │      initvalue.html
            │  │  │      showseconds.html
            │  │  │      
            │  │  ├─dialog
            │  │  │      basic.html
            │  │  │      complextoolbar.html
            │  │  │      toolbarbuttons.html
            │  │  │      
            │  │  ├─draggable
            │  │  │      basic.html
            │  │  │      constain.html
            │  │  │      snap.html
            │  │  │      
            │  │  ├─droppable
            │  │  │      accept.html
            │  │  │      basic.html
            │  │  │      sort.html
            │  │  │      
            │  │  ├─easyloader
            │  │  │      basic.html
            │  │  │      
            │  │  ├─form
            │  │  │      basic.html
            │  │  │      form_data1.json
            │  │  │      load.html
            │  │  │      
            │  │  ├─layout
            │  │  │      addremove.html
            │  │  │      basic.html
            │  │  │      complex.html
            │  │  │      datagrid_data1.json
            │  │  │      full.html
            │  │  │      nestedlayout.html
            │  │  │      nocollapsible.html
            │  │  │      propertygrid_data1.json
            │  │  │      tree_data1.json
            │  │  │      _content.html
            │  │  │      
            │  │  ├─linkbutton
            │  │  │      basic.html
            │  │  │      group.html
            │  │  │      iconalign.html
            │  │  │      plain.html
            │  │  │      toggle.html
            │  │  │      
            │  │  ├─menu
            │  │  │      basic.html
            │  │  │      customitem.html
            │  │  │      events.html
            │  │  │      
            │  │  ├─menubutton
            │  │  │      actions.html
            │  │  │      basic.html
            │  │  │      
            │  │  ├─messager
            │  │  │      alert.html
            │  │  │      basic.html
            │  │  │      interactive.html
            │  │  │      position.html
            │  │  │      
            │  │  ├─numberbox
            │  │  │      basic.html
            │  │  │      format.html
            │  │  │      range.html
            │  │  │      
            │  │  ├─numberspinner
            │  │  │      basic.html
            │  │  │      increment.html
            │  │  │      range.html
            │  │  │      
            │  │  ├─pagination
            │  │  │      basic.html
            │  │  │      custombuttons.html
            │  │  │      simple.html
            │  │  │      
            │  │  ├─panel
            │  │  │      basic.html
            │  │  │      customtools.html
            │  │  │      loadcontent.html
            │  │  │      nestedpanel.html
            │  │  │      paneltools.html
            │  │  │      _content.html
            │  │  │      
            │  │  ├─progressbar
            │  │  │      basic.html
            │  │  │      
            │  │  ├─propertygrid
            │  │  │      basic.html
            │  │  │      customcolumns.html
            │  │  │      groupformat.html
            │  │  │      propertygrid_data1.json
            │  │  │      
            │  │  ├─resizable
            │  │  │      basic.html
            │  │  │      
            │  │  ├─searchbox
            │  │  │      basic.html
            │  │  │      category.html
            │  │  │      
            │  │  ├─slider
            │  │  │      basic.html
            │  │  │      formattip.html
            │  │  │      rule.html
            │  │  │      vertical.html
            │  │  │      
            │  │  ├─splitbutton
            │  │  │      actions.html
            │  │  │      basic.html
            │  │  │      
            │  │  ├─tabs
            │  │  │      autoheight.html
            │  │  │      basic.html
            │  │  │      hover.html
            │  │  │      nestedtabs.html
            │  │  │      striptools.html
            │  │  │      tabposition.html
            │  │  │      tabstools.html
            │  │  │      tree_data1.json
            │  │  │      _content.html
            │  │  │      
            │  │  ├─timespinner
            │  │  │      actions.html
            │  │  │      basic.html
            │  │  │      range.html
            │  │  │      
            │  │  ├─tooltip
            │  │  │      ajax.html
            │  │  │      basic.html
            │  │  │      customcontent.html
            │  │  │      customstyle.html
            │  │  │      position.html
            │  │  │      toolbar.html
            │  │  │      tooltipdialog.html
            │  │  │      _content.html
            │  │  │      _dialog.html
            │  │  │      
            │  │  ├─tree
            │  │  │      actions.html
            │  │  │      animation.html
            │  │  │      basic.html
            │  │  │      checkbox.html
            │  │  │      contextmenu.html
            │  │  │      dnd.html
            │  │  │      editable.html
            │  │  │      icons.html
            │  │  │      lines.html
            │  │  │      tree_data1.json
            │  │  │      tree_data2.json
            │  │  │      
            │  │  ├─treegrid
            │  │  │      actions.html
            │  │  │      basic.html
            │  │  │      clientpagination.html
            │  │  │      contextmenu.html
            │  │  │      editable.html
            │  │  │      footer.html
            │  │  │      reports.html
            │  │  │      treegrid_data1.json
            │  │  │      treegrid_data2.json
            │  │  │      treegrid_data3.json
            │  │  │      
            │  │  ├─validatebox
            │  │  │      basic.html
            │  │  │      customtooltip.html
            │  │  │      
            │  │  └─window
            │  │          basic.html
            │  │          customtools.html
            │  │          inlinewindow.html
            │  │          modalwindow.html
            │  │          windowlayout.html
            │  │          
            │  ├─locale
            │  │      easyui-lang-af.js
            │  │      easyui-lang-ar.js
            │  │      easyui-lang-bg.js
            │  │      easyui-lang-ca.js
            │  │      easyui-lang-cs.js
            │  │      easyui-lang-cz.js
            │  │      easyui-lang-da.js
            │  │      easyui-lang-de.js
            │  │      easyui-lang-el.js
            │  │      easyui-lang-en.js
            │  │      easyui-lang-es.js
            │  │      easyui-lang-fr.js
            │  │      easyui-lang-it.js
            │  │      easyui-lang-jp.js
            │  │      easyui-lang-nl.js
            │  │      easyui-lang-pl.js
            │  │      easyui-lang-pt_BR.js
            │  │      easyui-lang-ru.js
            │  │      easyui-lang-sv_SE.js
            │  │      easyui-lang-tr.js
            │  │      easyui-lang-zh_CN.js
            │  │      easyui-lang-zh_TW.js
            │  │      
            │  ├─plugins
            │  │      jquery.accordion.js
            │  │      jquery.calendar.js
            │  │      jquery.combo.js
            │  │      jquery.combobox.js
            │  │      jquery.combogrid.js
            │  │      jquery.combotree.js
            │  │      jquery.datagrid.js
            │  │      jquery.datebox.js
            │  │      jquery.datetimebox.js
            │  │      jquery.dialog.js
            │  │      jquery.draggable.js
            │  │      jquery.droppable.js
            │  │      jquery.form.js
            │  │      jquery.layout.js
            │  │      jquery.linkbutton.js
            │  │      jquery.menu.js
            │  │      jquery.menubutton.js
            │  │      jquery.messager.js
            │  │      jquery.numberbox.js
            │  │      jquery.numberspinner.js
            │  │      jquery.pagination.js
            │  │      jquery.panel.js
            │  │      jquery.parser.js
            │  │      jquery.progressbar.js
            │  │      jquery.propertygrid.js
            │  │      jquery.resizable.js
            │  │      jquery.searchbox.js
            │  │      jquery.slider.js
            │  │      jquery.spinner.js
            │  │      jquery.splitbutton.js
            │  │      jquery.tabs.js
            │  │      jquery.timespinner.js
            │  │      jquery.tooltip.js
            │  │      jquery.tree.js
            │  │      jquery.treegrid.js
            │  │      jquery.validatebox.js
            │  │      jquery.window.js
            │  │      
            │  ├─src
            │  │      easyloader.js
            │  │      jquery.accordion.js
            │  │      jquery.calendar.js
            │  │      jquery.combobox.js
            │  │      jquery.datebox.js
            │  │      jquery.draggable.js
            │  │      jquery.droppable.js
            │  │      jquery.form.js
            │  │      jquery.linkbutton.js
            │  │      jquery.menu.js
            │  │      jquery.parser.js
            │  │      jquery.progressbar.js
            │  │      jquery.propertygrid.js
            │  │      jquery.resizable.js
            │  │      jquery.slider.js
            │  │      jquery.tabs.js
            │  │      jquery.window.js
            │  │      
            │  └─themes
            │      │  icon.css
            │      │  
            │      ├─black
            │      │  │  accordion.css
            │      │  │  calendar.css
            │      │  │  combo.css
            │      │  │  combobox.css
            │      │  │  datagrid.css
            │      │  │  datebox.css
            │      │  │  dialog.css
            │      │  │  easyui.css
            │      │  │  layout.css
            │      │  │  linkbutton.css
            │      │  │  menu.css
            │      │  │  menubutton.css
            │      │  │  messager.css
            │      │  │  pagination.css
            │      │  │  panel.css
            │      │  │  progressbar.css
            │      │  │  propertygrid.css
            │      │  │  searchbox.css
            │      │  │  slider.css
            │      │  │  spinner.css
            │      │  │  splitbutton.css
            │      │  │  tabs.css
            │      │  │  tooltip.css
            │      │  │  tree.css
            │      │  │  validatebox.css
            │      │  │  window.css
            │      │  │  
            │      │  └─images
            │      │          accordion_arrows.png
            │      │          blank.gif
            │      │          calendar_arrows.png
            │      │          combo_arrow.png
            │      │          datagrid_icons.png
            │      │          datebox_arrow.png
            │      │          layout_arrows.png
            │      │          linkbutton_bg.png
            │      │          loading.gif
            │      │          menu_arrows.png
            │      │          messager_icons.png
            │      │          pagination_icons.png
            │      │          panel_tools.png
            │      │          searchbox_button.png
            │      │          slider_handle.png
            │      │          spinner_arrows.png
            │      │          tabs_icons.png
            │      │          Thumbs.db
            │      │          tree_icons.png
            │      │          validatebox_warning.png
            │      │          
            │      ├─bootstrap
            │      │  │  accordion.css
            │      │  │  calendar.css
            │      │  │  combo.css
            │      │  │  combobox.css
            │      │  │  datagrid.css
            │      │  │  datebox.css
            │      │  │  dialog.css
            │      │  │  easyui.css
            │      │  │  layout.css
            │      │  │  linkbutton.css
            │      │  │  menu.css
            │      │  │  menubutton.css
            │      │  │  messager.css
            │      │  │  pagination.css
            │      │  │  panel.css
            │      │  │  progressbar.css
            │      │  │  propertygrid.css
            │      │  │  searchbox.css
            │      │  │  slider.css
            │      │  │  spinner.css
            │      │  │  splitbutton.css
            │      │  │  tabs.css
            │      │  │  tooltip.css
            │      │  │  tree.css
            │      │  │  validatebox.css
            │      │  │  window.css
            │      │  │  
            │      │  └─images
            │      │          accordion_arrows.png
            │      │          blank.gif
            │      │          calendar_arrows.png
            │      │          combo_arrow.png
            │      │          datagrid_icons.png
            │      │          datebox_arrow.png
            │      │          layout_arrows.png
            │      │          linkbutton_bg.png
            │      │          loading.gif
            │      │          menu_arrows.png
            │      │          messager_icons.png
            │      │          pagination_icons.png
            │      │          panel_tools.png
            │      │          searchbox_button.png
            │      │          slider_handle.png
            │      │          spinner_arrows.png
            │      │          tabs_icons.png
            │      │          Thumbs.db
            │      │          tree_icons.png
            │      │          validatebox_warning.png
            │      │          
            │      ├─default
            │      │  │  accordion.css
            │      │  │  calendar.css
            │      │  │  combo.css
            │      │  │  combobox.css
            │      │  │  datagrid.css
            │      │  │  datebox.css
            │      │  │  dialog.css
            │      │  │  easyui.css
            │      │  │  layout.css
            │      │  │  linkbutton.css
            │      │  │  menu.css
            │      │  │  menubutton.css
            │      │  │  messager.css
            │      │  │  pagination.css
            │      │  │  panel.css
            │      │  │  progressbar.css
            │      │  │  propertygrid.css
            │      │  │  searchbox.css
            │      │  │  slider.css
            │      │  │  spinner.css
            │      │  │  splitbutton.css
            │      │  │  tabs.css
            │      │  │  tooltip.css
            │      │  │  tree.css
            │      │  │  validatebox.css
            │      │  │  window.css
            │      │  │  
            │      │  └─images
            │      │          accordion_arrows.png
            │      │          blank.gif
            │      │          calendar_arrows.png
            │      │          combo_arrow.png
            │      │          datagrid_icons.png
            │      │          datebox_arrow.png
            │      │          layout_arrows.png
            │      │          linkbutton_bg.png
            │      │          loading.gif
            │      │          menu_arrows.png
            │      │          messager_icons.png
            │      │          pagination_icons.png
            │      │          panel_tools.png
            │      │          searchbox_button.png
            │      │          slider_handle.png
            │      │          spinner_arrows.png
            │      │          tabs_icons.png
            │      │          Thumbs.db
            │      │          tree_icons.png
            │      │          validatebox_warning.png
            │      │          
            │      ├─gray
            │      │  │  accordion.css
            │      │  │  calendar.css
            │      │  │  combo.css
            │      │  │  combobox.css
            │      │  │  datagrid.css
            │      │  │  datebox.css
            │      │  │  dialog.css
            │      │  │  easyui.css
            │      │  │  layout.css
            │      │  │  linkbutton.css
            │      │  │  menu.css
            │      │  │  menubutton.css
            │      │  │  messager.css
            │      │  │  pagination.css
            │      │  │  panel.css
            │      │  │  progressbar.css
            │      │  │  propertygrid.css
            │      │  │  searchbox.css
            │      │  │  slider.css
            │      │  │  spinner.css
            │      │  │  splitbutton.css
            │      │  │  tabs.css
            │      │  │  tooltip.css
            │      │  │  tree.css
            │      │  │  validatebox.css
            │      │  │  window.css
            │      │  │  
            │      │  └─images
            │      │          accordion_arrows.png
            │      │          blank.gif
            │      │          calendar_arrows.png
            │      │          combo_arrow.png
            │      │          datagrid_icons.png
            │      │          datebox_arrow.png
            │      │          layout_arrows.png
            │      │          linkbutton_bg.png
            │      │          loading.gif
            │      │          menu_arrows.png
            │      │          messager_icons.png
            │      │          pagination_icons.png
            │      │          panel_tools.png
            │      │          searchbox_button.png
            │      │          slider_handle.png
            │      │          spinner_arrows.png
            │      │          tabs_icons.png
            │      │          Thumbs.db
            │      │          tree_icons.png
            │      │          validatebox_warning.png
            │      │          
            │      ├─icons
            │      │      back.png
            │      │      blank.gif
            │      │      cancel.png
            │      │      cut.png
            │      │      edit_add.png
            │      │      edit_remove.png
            │      │      filesave.png
            │      │      help.png
            │      │      mini_add.png
            │      │      mini_edit.png
            │      │      mini_refresh.png
            │      │      no.png
            │      │      ok.png
            │      │      pencil.png
            │      │      print.png
            │      │      redo.png
            │      │      reload.png
            │      │      search.png
            │      │      sum.png
            │      │      tip.png
            │      │      undo.png
            │      │      
            │      └─metro
            │          │  accordion.css
            │          │  calendar.css
            │          │  combo.css
            │          │  combobox.css
            │          │  datagrid.css
            │          │  datebox.css
            │          │  dialog.css
            │          │  easyui.css
            │          │  layout.css
            │          │  linkbutton.css
            │          │  menu.css
            │          │  menubutton.css
            │          │  messager.css
            │          │  pagination.css
            │          │  panel.css
            │          │  progressbar.css
            │          │  propertygrid.css
            │          │  searchbox.css
            │          │  slider.css
            │          │  spinner.css
            │          │  splitbutton.css
            │          │  tabs.css
            │          │  tooltip.css
            │          │  tree.css
            │          │  validatebox.css
            │          │  window.css
            │          │  
            │          └─images
            │                  accordion_arrows.png
            │                  blank.gif
            │                  calendar_arrows.png
            │                  combo_arrow.png
            │                  datagrid_icons.png
            │                  datebox_arrow.png
            │                  layout_arrows.png
            │                  linkbutton_bg.png
            │                  loading.gif
            │                  menu_arrows.png
            │                  messager_icons.png
            │                  pagination_icons.png
            │                  panel_tools.png
            │                  searchbox_button.png
            │                  slider_handle.png
            │                  spinner_arrows.png
            │                  tabs_icons.png
            │                  Thumbs.db
            │                  tree_icons.png
            │                  validatebox_warning.png
            │                  
            ├─js
            │      echarts.js
            │      jquery-1.4.3.js
            │      jquery.min.js
            │      md5.js
            │      
            ├─META-INF
            │      MANIFEST.MF
            │      
            └─WEB-INF
                │  spring-form.tld
                │  spring.tld
                │  web.xml
                │  
                ├─classes
                │  │  applicationContext.xml
                │  │  shiro-ehcache.xml
                │  │  
                │  ├─com
                │  │  └─user
                │  │      ├─controller
                │  │      │      JobController.class
                │  │      │      LoginController.class
                │  │      │      PersonController.class
                │  │      │      WupingController.class
                │  │      │      
                │  │      ├─dao
                │  │      │  └─imp
                │  │      │          JobDaoImp.class
                │  │      │          LoginDaoImp.class
                │  │      │          PersonDaoImp.class
                │  │      │          WupingDaoImp.class
                │  │      │          
                │  │      └─mapper
                │  │              JobMapper.class
                │  │              JobMapper.xml
                │  │              LoginMapper.class
                │  │              LoginMapper.xml
                │  │              PersonMapper.class
                │  │              PersonMapper.xml
                │  │              WupingMapper.class
                │  │              WupingMapper.xml
                │  │              
                │  └─entity
                │          Job.class
                │          Level.class
                │          Login.class
                │          Person.class
                │          ResponseUtil.class
                │          Wuping.class
                │          
                └─lib
                        jotm.jar
                        mybatis-3.1.1.jar
                        mybatis-3.4.1.jar
                        mybatis-spring-1.2.1.jar
                        mysql-connector-java-5.1.10-bin.jar
                        

目  录
1.前言    1
1.1本课题研究意义    1
1.2系统研究意义    1
2.系统可行性分析    3
2.1可行性分析    3
2.2技术可行性分析    3
2.3操作可行性分析    3
2.4环境可行性分析    3
2.5法律可行性分析    3
3.系统需求分析    4
3.1用户工作流程    4
3.2用户务需求    4
4.系统概要    5
4.1 设计思想    5
4.2 设计原则    5
4.3 业务流程    5
4.4运行需求    5
5.系统详细设计    6
5.1系统功能设计    6
5.2数据库设计    6
6.系统主要功能实现    8
6.1登录    8
6.2用户管理    9
6.3员工管理    12
6.4商品管理    13
6.5运行测试    15
7.总结与展望    16
8.致谢    17
参考文献    18


标签:超市管理系统,超市销售系统,超市进销存管理系统

  • 专注毕业设计源码作品
  • 毕业设计源码论文全套
  • 每件作品均测试后上线
  • 提供所有教程和软件下载

Copyright © 2008-2024 jsjbysjw.com . All Rights Reserved. 备案号:苏ICP备2021056683号-4

  • 联系QQ:81677093
  • 微信:bysj1950