最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

基于Springboot實(shí)現(xiàn)田徑運(yùn)動(dòng)會(huì)管理系統(tǒng)

2022-04-29 13:23 作者:指南針畢業(yè)設(shè)計(jì)  | 我要投稿

?項(xiàng)目編號(hào):BS-XX-081

環(huán)境需要

1.運(yùn)行環(huán)境:最好是java jdk 1.8,我們?cè)谶@個(gè)平臺(tái)上運(yùn)行的。其他版本理論上也可以。 2.IDE環(huán)境:IDEA,Eclipse,Myeclipse都可以。推薦IDEA; 3.tomcat環(huán)境:Tomcat 7.x,8.x,9.x版本均可 4.硬件環(huán)境:windows 7/8/10 1G內(nèi)存以上;或者 Mac OS; 5.數(shù)據(jù)庫:MySql 8.0版本;

6.是否Maven項(xiàng)目:是;

技術(shù)棧

\1. 后端:SpringBoot

\2. 前端:Thymeleaf+HTML+CSS+jQuery

項(xiàng)目介紹

本項(xiàng)目分為管理員、學(xué)生兩種角色, 管理員主要功能包括: 功能:登錄、查看個(gè)人資料、修改密碼、選手管理、賽事管理、報(bào)名管理、成績(jī)管理、開幕式管理、閉幕式管理

學(xué)生主要功能包括: 首頁, 項(xiàng)目管理:報(bào)名項(xiàng)目、查看已報(bào)名項(xiàng)目; 成績(jī)查詢:?jiǎn)蝹€(gè)項(xiàng)目查詢、總成績(jī)查詢、個(gè)人總積分查詢; 查看開幕式; 查看閉幕式; 個(gè)人資料:查看個(gè)人資料、修改密碼;


使用說明

\1. 使用Navicat或者其它工具,在mysql中創(chuàng)建對(duì)應(yīng)名稱的數(shù)據(jù)庫,并導(dǎo)入項(xiàng)目的sql文件; \2. 使用IDEA/Eclipse/MyEclipse導(dǎo)入項(xiàng)目,Eclipse/MyEclipse導(dǎo)入時(shí),若為maven項(xiàng)目請(qǐng)選擇maven;若為maven項(xiàng)目,導(dǎo)入成功后請(qǐng)執(zhí)行maven clean;maven install命令,然后運(yùn)行; \3. 將項(xiàng)目中application.yml配置文件中的數(shù)據(jù)庫配置改為自己的配置; \4. 運(yùn)行項(xiàng)目,輸入localhost:8080/ 登錄 管理員賬號(hào)/密碼:10001/123456 學(xué)生賬號(hào)/密碼:1001/123456

運(yùn)行截圖

img




img

img

img

img

img

img

img

img

img



本系統(tǒng)功能完整,界面美觀大方,適合做畢業(yè)設(shè)計(jì)使用 !

部分實(shí)現(xiàn)代碼

package com.xhu.service;

import com.xhu.mapper.AdminMapper;
import com.xhu.mapper.StudentMapper;
import com.xhu.pojo.Admin;
import com.xhu.pojo.Student;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;


@Service
public class AdminService {
? ? @Autowired
? ? AdminMapper adminMapper;

? ? public List queryAdmin() {
? ? ? ? return adminMapper.queryAdmin();
? ? }

? ? public Admin queryAdminById(Integer id) {
? ? ? ? return adminMapper.queryAdminById(id);
? ? }

? ? public int updAdmin(String adminName, String adminGender, int adminAge, String adminPhone, int adminId) {
? ? ? ? return adminMapper.updAdmin(adminName, adminGender, adminAge, adminPhone, adminId);
? ? }

? ? public int updAdminPass(String adminPassword, Integer adminId) {
? ? ? ? return adminMapper.updAdminPass(adminPassword, adminId);
? ? }

}
?

package com.xhu.service;

import com.xhu.mapper.AdminMapper;
import com.xhu.mapper.CeremonyMapper;
import com.xhu.pojo.Admin;
import com.xhu.pojo.CeremonyClose;
import com.xhu.pojo.CeremonyOpen;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;


@Service
public class CeremonyService {
? ? @Autowired
? ? CeremonyMapper ceremonyMapper;

? ? /*開幕式*/
? ? public CeremonyOpen getCeremonyOpen() {
? ? ? ? return ceremonyMapper.getCeremonyOpen();
? ? }

? ? public CeremonyOpen getCeremonyOpenById(String ceremonyId) {
? ? ? ? return ceremonyMapper.getCeremonyOpenById(ceremonyId);
? ? }

? ? public int addCeremonyOpen(CeremonyOpen ceremonyOpen) {
? ? ? ? return ceremonyMapper.addCeremonyOpen(ceremonyOpen);
? ? }

? ? public int updCeremonyOpen(CeremonyOpen ceremonyOpen) {
? ? ? ? return ceremonyMapper.updCeremonyOpen(ceremonyOpen);
? ? }

? ? public void delCeremonyOpen(String ceremonyId) {
? ? ? ? ceremonyMapper.delCeremonyOpen(ceremonyId);
? ? }

? ? /*閉幕式*/
? ? public CeremonyClose getCeremonyClose() {
? ? ? ? return ceremonyMapper.getCeremonyClose();
? ? }

? ? public CeremonyClose getCeremonyCloseById(String ceremonyId) {
? ? ? ? return ceremonyMapper.getCeremonyCloseById(ceremonyId);
? ? }

? ? public int addCeremonyClose(CeremonyClose ceremonyClose) {
? ? ? ? return ceremonyMapper.addCeremonyClose(ceremonyClose);
? ? }

? ? public int updCeremonyClose(CeremonyClose ceremonyClose) {
? ? ? ? return ceremonyMapper.updCeremonyClose(ceremonyClose);
? ? }

? ? public void delCeremonyClose(String ceremonyId) {
? ? ? ? ceremonyMapper.delCeremonyClose(ceremonyId);
? ? }
}
?

package com.xhu.service;

import com.xhu.mapper.AdminMapper;
import com.xhu.mapper.GradeMapper;
import com.xhu.pojo.Admin;
import com.xhu.pojo.SportsScore;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;


@Service
public class GradeService {
? ? @Autowired
? ? GradeMapper gradeMapper;

? ? public List selectWithStuAndSportsDefault(){
? ? ? ? return gradeMapper.selectWithStuAndSportsDefault();
? ? }

? ? public List selectWithStuAndSports( int sportsId){
? ? ? ? return gradeMapper.selectWithStuAndSports(sportsId);
? ? }

? ? public int updScore(SportsScore sportsScore){
? ? ? ? return gradeMapper.updScore(sportsScore);
? ? }

? ? public List getScoreAll( ){
? ? ? ? return gradeMapper.getScoreAll();
? ? }

? ? public List getScoreAllWithCondition(String school,String gender ){
? ? ? ? return gradeMapper.getScoreAllWithCondition(school,gender);
? ? }

? ? public List getScoreBySchoolAll(){
? ? ? ? return gradeMapper.getScoreBySchoolAll();
? ? }

? ? public List getScoreBySchoolTypeAll(String sportsType){
? ? ? ? return gradeMapper.getScoreBySchoolTypeAll(sportsType);
? ? }

? ? public List getScoreBySchool(){
? ? ? ? return gradeMapper.getScoreBySchool();
? ? }

? ? public List getScoreBySchoolWithCondition(String school,String gender){
? ? ? ? return gradeMapper.getScoreBySchoolWithCondition(school,gender);
? ? }
}


基于Springboot實(shí)現(xiàn)田徑運(yùn)動(dòng)會(huì)管理系統(tǒng)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
合水县| 南溪县| 黄骅市| 龙井市| 徐水县| 东光县| 江川县| 化州市| 南昌市| 博客| 华蓥市| 朔州市| 和政县| 临高县| 广昌县| 沽源县| 若尔盖县| 睢宁县| 崇文区| 佛山市| 和龙市| 社旗县| 化隆| 永城市| 龙山县| 新营市| 平阴县| 屏东县| 高雄市| 望奎县| 梓潼县| 朝阳区| 彰化市| 铁岭市| 益阳市| 宝鸡市| 沧源| 辛集市| 佳木斯市| 海阳市| 醴陵市|