Skip to content

Hello-Imagine/order_system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

intelligent order system

Setup the Project

  1. Git clone git@github.com:Imagine9575/order_system.git
  2. Change the project structure in JetBrains Idea to jdk1.8
  3. New module
    1. Choose spring initializer
    2. Choose jdk1.8
    3. Set pom.xml in the module as follows
      1. Change the artifactId label to project name (12nd lines)
      2. Add project name to the parent project modules tab
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>order-system</artifactId>
        <groupId>com.example</groupId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>demo</artifactId>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

    <dependencies>
    </dependencies>

</project>

Function Modules

  • images
    • Purpose: Upload images to the server and receive the image URL.
  • kitchen
    • Purpose: Back kitchen management.
      • Real-time bulletin page.
      • Order details page.
      • Message editing page.
  • admin
    • Purpose: Restaurant administrator.
      • Employee management page.
      • Menu management page.
      • Order management page.
      • Historical business data.
      • Display and modification information page.
  • waiter
    • Purpose: Restaurant waiter.
      • View real-time bulletin.
      • Place orders.
      • Pending settlement orders.
      • Serving messages.
      • Back kitchen messages.
      • View dishes.
  • menu
    • Purpose: Dynamic menu design.
      • Administrator menu.
      • Waiter menu.
      • Back kitchen menu.

Project Overview

  • Login img

  • Administrator Module img img img

  • Kitchen Module img img

  • Waiter Module img

About

An Intelligent Food Order System

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages