springboot,vue电影院售票系统

开发工具:IDEA

服务器:Tomcat9.0, jdk1.8

项目构建:maven

数据库:mysql5.7

系统用户前台和管理后台两部分,项目采用前后端分离

前端技术:vue +elementUI

服务端技术:springboot+mybatis

项目功能描述:

一、前台功能:

1.登录、注册、退出系统、首页、搜索

2.电影:正在热映、即将热映、经典影片

3.影院:选座订票、下单支付

4.榜单:热映口碑榜、国内票房榜、北美票房榜、TOP100榜

5.个人中心:我的订单、基本信息

二、后台功能:

1.登录、退出系统、首页

2.影院管理

(1)影院信息管理:添加、修改、删除、查询等功能

(2)影院区域管理:添加、修改、删除等功能

(3)影院品牌管理:添加、修改、删除等功能

3.电影管理

(1)电影信息管理:添加、修改、删除、查询、演员和影片分类等功能

(2)电影评论管理:添加、删除等操作

(3)电影年度管理:添加、修改、删除等功能

(4)电影区域管理:添加、修改、删除等功能

(5)电影类别管理:添加、修改、删除等功能

(6)电影播放时段管理:添加、修改、删除等功能

4.影厅管理

(1)影厅信息管理:添加、修改、删除、查询、安排座位等功能

(2)影厅类别管理:添加、修改、删除等功能

5.场次管理

(1)场次信息管理:添加、修改、删除、查询、查看座位等功能

6.演员管理

(1)演员信息管理:添加、修改、删除、查询等功能

(2)演员角色管理:添加、修改、删除等功能

7.用户管理

(1)用户信息管理:添加、修改、删除、查询等功能

(2)订单信息管理:查询、删除等功能

(3)用户爱好管理:添加、修改、删除等功能

8.权限管理

(1)角色信息管理:添加、修改、删除、分配权限等功能

(2)资源信息管理:添加、修改、删除等功能

前台截图:

springboot,vue电影院售票系统_第1张图片
springboot,vue电影院售票系统_第2张图片
springboot,vue电影院售票系统_第3张图片
springboot,vue电影院售票系统_第4张图片
springboot,vue电影院售票系统_第5张图片
springboot,vue电影院售票系统_第6张图片
springboot,vue电影院售票系统_第7张图片
springboot,vue电影院售票系统_第8张图片
springboot,vue电影院售票系统_第9张图片
springboot,vue电影院售票系统_第10张图片
springboot,vue电影院售票系统_第11张图片
springboot,vue电影院售票系统_第12张图片

后台截图:

springboot,vue电影院售票系统_第13张图片
springboot,vue电影院售票系统_第14张图片
springboot,vue电影院售票系统_第15张图片
springboot,vue电影院售票系统_第16张图片
springboot,vue电影院售票系统_第17张图片
springboot,vue电影院售票系统_第18张图片
springboot,vue电影院售票系统_第19张图片
springboot,vue电影院售票系统_第20张图片
springboot,vue电影院售票系统_第21张图片
springboot,vue电影院售票系统_第22张图片
springboot,vue电影院售票系统_第23张图片
springboot,vue电影院售票系统_第24张图片
springboot,vue电影院售票系统_第25张图片
springboot,vue电影院售票系统_第26张图片
springboot,vue电影院售票系统_第27张图片
springboot,vue电影院售票系统_第28张图片
springboot,vue电影院售票系统_第29张图片
springboot,vue电影院售票系统_第30张图片
springboot,vue电影院售票系统_第31张图片
package com.gouyan.web.controller.system;

import com.gouyan.common.response.ResponseResult;
import com.gouyan.system.domin.SysActorRole;
import com.gouyan.system.service.impl.SysActorRoleServiceImpl;
import com.gouyan.web.controller.BaseController;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;

import java.util.List;

@RestController
public class SysActorRoleController extends BaseController {

    @Autowired
    SysActorRoleServiceImpl sysActorRoleService;

    @GetMapping("/sysActorRole")
    public ResponseResult findAll(){
        startPage();
        List data = sysActorRoleService.findAll();
        return getResult(data);
    }

    @GetMapping("/sysActorRole/{id}")
    public ResponseResult findById(@PathVariable Long id){
        return getResult(sysActorRoleService.findById(id));
    }

    @PostMapping("/sysActorRole")
    public ResponseResult add(@Validated @RequestBody SysActorRole sysActorRole){
        return getResult(sysActorRoleService.add(sysActorRole));
    }

    @PutMapping("/sysActorRole")
    public ResponseResult update(@Validated @RequestBody SysActorRole sysActorRole){
        return getResult(sysActorRoleService.update(sysActorRole));
    }

    @DeleteMapping("/sysActorRole/{ids}")
    public ResponseResult delete(@PathVariable Long[] ids){
        return getResult(sysActorRoleService.delete(ids));
    }

}
package com.gouyan.system.service.impl;

import com.gouyan.system.domin.SysActor;
import com.gouyan.system.mapper.SysActorMapper;
import com.gouyan.system.service.SysActorService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;


@Service
public class SysActorServiceImpl implements SysActorService {

@Autowired
private SysActorMapper sysActorMapper;

@Override
public List findAll(SysActor sysActor) {
return sysActorMapper.findAll(sysActor);
}

@Override
public SysActor findById(Long id) {
return sysActorMapper.findById(id);
}

@Override
public int add(SysActor sysActor) {
return sysActorMapper.add(sysActor);
}

@Override
public int update(SysActor sysActor) {
return sysActorMapper.update(sysActor);
}

@Override
public int delete(Long[] ids) {
int rows = 0;
for (Long id : ids) {
rows += sysActorMapper.delete(id);
}
return rows;
}

@Override
public SysActor findActorById(Long id) {
return sysActorMapper.findActorById(id);
}
}

你可能感兴趣的:(vue,毕设,idea,vue.js,spring,boot,mybatis,springboot影院售票)