Initial commit: Car Maintenance Management System

Author: Yang Lu

School: Liaoning Institute of Science and Technology

Major: Computer Science and Technology

Class: BZ246

Tech Stack:

- Backend: Spring Boot 2.7.18 + JPA + MySQL

- Frontend: HTML5 + CSS3 + JavaScript

Features:

- User Management (Admin/Staff/Customer roles)

- Vehicle Archive Management

- Service Order Management

- Parts Inventory Management

- Online Appointment Service

- Data Statistics and Analysis

Generated with Claude Code

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
wangziqi
2026-01-07 14:28:50 +08:00
commit cfae122685
45 changed files with 5447 additions and 0 deletions

67
git-push.sh Normal file
View File

@@ -0,0 +1,67 @@
#!/bin/bash
# 车管家4S店车辆维保管理系统 - Git初始化和推送脚本
echo "================================"
echo "Git仓库初始化和推送脚本"
echo "================================"
# 1. 初始化Git仓库
echo ""
echo "[1/6] 初始化Git仓库..."
git init
# 2. 配置Git用户信息可选如果已配置可跳过
echo ""
echo "[2/6] 配置Git用户信息..."
git config user.name "wangziqi"
git config user.email "wangziqi@example.com"
# 3. 添加所有文件
echo ""
echo "[3/6] 添加所有文件到暂存区..."
git add .
# 4. 创建初始提交
echo ""
echo "[4/6] 创建初始提交..."
git commit -m "Initial commit: 车管家4S店车辆维保管理系统
项目信息:
- 作者: 杨璐
- 学校: 辽宁科技学院
- 专业: 计算机科学与技术
- 班级: 计BZ246
技术栈:
- 后端: Spring Boot 2.7.18 + JPA + MySQL
- 前端: HTML5 + CSS3 + JavaScript
主要功能:
- 用户管理(管理员/工作人员/客户三种角色)
- 车辆档案管理
- 维保工单管理
- 配件库存管理
- 在线预约服务
- 数据统计分析
Generated with Claude Code
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>"
# 5. 添加远程仓库
echo ""
echo "[5/6] 添加远程仓库..."
git remote add origin http://wangziqi:qq5211314@154.36.185.171:3003/car-maintenance-system.git
# 6. 推送到远程仓库
echo ""
echo "[6/6] 推送到远程仓库..."
git push -u origin master
echo ""
echo "================================"
echo "Git仓库推送完成"
echo "================================"
echo ""
echo "远程仓库地址: http://154.36.185.171:3003/car-maintenance-system.git"
echo ""