# yinzhengjie-bms **Repository Path**: jasonyin2020/yinzhengjie-bms ## Basic Information - **Project Name**: yinzhengjie-bms - **Description**: 使用golang的gin框架编写的图书管理系统!用于课堂教学,已经编译好二进制文件了哟~ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2023-02-12 - **Last Updated**: 2024-12-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [TOC] # 一.项目组织说明 ``` 我将程序封装了3个版本,分别对应v1,v2和v3。目前我只编译了Linux,Mac和Windows发行版,CPU架构为amd64。 目录组织结构如下所示: [root@golang20 yinzhengjie-bms]# ll total 8 -rw-r--r-- 1 root root 4100 Jan 21 18:23 README.md drwxr-xr-x 3 root root 27 Jan 21 17:56 v1 drwxr-xr-x 3 root root 27 Jan 21 17:53 v2 drwxr-xr-x 3 root root 27 Jan 21 17:52 v3 [root@golang20 yinzhengjie-bms]# [root@golang20 yinzhengjie-bms]# tree . ├── README.md ├── v1 │   └── oldboyedu-bms │   ├── bin │   │   ├── start-bms-for-linux │   │   ├── start-bms-for-mac │   │   └── start-bms-for-windows.exe │   ├── conf │   │   └── book.ini │   ├── table.sql │   └── templates │   ├── book │   │   ├── book_edit.html │   │   ├── book_list.html │   │   ├── index.html │   │   └── new_book.html │   └── user │   ├── login.html │   └── register.html ├── v2 │   └── oldboyedu-bms │   ├── bin │   │   ├── start-bms-for-linux │   │   ├── start-bms-for-mac │   │   └── start-bms-for-windows.exe │   ├── conf │   │   └── book.ini │   ├── table.sql │   └── templates │   ├── static │   │   ├── css │   │   │   ├── code.css │   │   │   ├── login.css │   │   │   └── register.css │   │   ├── image │   │   │   ├── logo-bak.png │   │   │   └── logo.png │   │   └── js │   │   └── jquery-3.4.1.min.js │   └── tmpl │   ├── book │   │   ├── book_edit.html │   │   ├── book_list.html │   │   └── new_book.html │   ├── index │   │   └── index.html │   └── user │   ├── code.html │   ├── login.html │   └── register.html └── v3 └── oldboyedu-bms ├── bin │   ├── start-bms-for-linux │   ├── start-bms-for-mac │   └── start-bms-for-windows.exe ├── conf │   └── book.ini ├── table.sql └── templates ├── static │   ├── css │   │   ├── code.css │   │   ├── login.css │   │   └── register.css │   ├── image │   │   ├── logo-bak.png │   │   └── logo.png │   └── js │   └── jquery-3.4.1.min.js └── tmpl ├── book │   ├── book_edit.html │   ├── book_list.html │   └── new_book.html ├── index │   ├── 404.html │   └── index.html └── user ├── code.html ├── login.html └── register.html 33 directories, 49 files [root@golang20 yinzhengjie-bms]# ``` # 二.项目安装 ``` - 下载代码到服务器 略。 - 准备数据库: - MySQL:8.0.28 - Redis:3.2.12 - 初始化数据库: 在MySQL执行数据库各版本的'table.sql'即可。 ```