# youtell **Repository Path**: Strange_Java/youtell ## Basic Information - **Project Name**: youtell - **Description**: 儿童成长管理平台(前后端不分离) - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-01 - **Last Updated**: 2025-08-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: Java, SpringBoot, MyBatis ## README # 儿童成长管理平台 ## 📖 项目简介 **儿童成长管理平台** 是一个为幼儿园打造的综合管理系统,核心功能: - 👩‍🏫 教师签到与工资管理 - 🧒 学生签到与缴费管理 - 🛠 管理端后台系统,方便统一配置与维护 系统基于 Java 和 Spring Boot 构建,界面使用 Thymeleaf 模板引擎,适用于中小型教育机构的信息化建设。 --- ## 🚀 技术栈 | 技术 | 说明 | |------------|----------------------| | Java | JDK 1.8 | | Spring Boot| 2.5.3 | | lombook | 简化实体类代码 | | MyBatis | 数据访问持久层框架 | | MySQL | 8.0,关系型数据库 | | Thymeleaf | 前端模板引擎 | --- ## 🏗️ 项目结构
 ```├── src
│   ├── main
│   │   ├── java
│   │   │   └── com.youtellv1
│   │   │       ├── config         // 配置类
│   │   │       ├── controller     // 控制器
│   │   │       ├── dto            // 数据传输对象
│   │   │       ├── entity         // 实体类
│   │   │       ├── mapper         // MyBatis 映射接口
│   │   │       ├── service        // 服务接口
│   │   │       │   └── Impl       // 服务实现类
│   │   │       └── utils          // 工具类
│   │   └── resources
│   │       ├── static             // 静态资源 (JS/CSS)
│   │       ├── templates          // Thymeleaf 模板
│   │       ├── application.yml    // 应用配置文件
│   │       └── youtell.sql        // 数据库脚本
│   └── test                       // 测试代码
└── pom.xml                        // Maven 依赖配置
 ``` 
--- ## ⚙️ 快速开始 ### 1. 克隆项目 git clone https://gitee.com/Strange_Java/youtell.git cd youtell ### 2. 配置数据库 创建数据库(推荐名称:youtell) 执行数据库脚本:src/main/resources/youtell.sql ### 3. 配置项目 编辑 src/main/resources/application.yml,修改数据库连接配置: spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/youtell username: your_username password: your_password ### 4. 启动项目 使用 IDEA 或命令行运行主类 YoutellV1Application.java: mvn spring-boot:run ## 🧩 数据库结构概览 tb_admins管理员信息表 tb_child幼儿信息表 tb_childpay幼儿缴费信息表 tb_childsign幼儿签到信息表 tb_gsal托管老师工资表 tb_post岗位信息表 tb_teachers教师信息表 tb_teachersign教师签到表 tb_ysal托育老师工资表 ## 📸 项目截图 ![登录页面](https://foruda.gitee.com/images/1754030647069554747/31068205_15549880.png "屏幕截图") ![首页展示数据(默认)](https://foruda.gitee.com/images/1754030684599493255/12c41ad5_15549880.png "屏幕截图") ![教师列表页](https://foruda.gitee.com/images/1754030746417898118/5d58aebf_15549880.png "屏幕截图") ![教师详细信息展示](https://foruda.gitee.com/images/1754031039224102319/0f4f794e_15549880.png "屏幕截图") ![教师签到页](https://foruda.gitee.com/images/1754030801781558855/cbd1c380_15549880.png "屏幕截图") ![托育老师工资展示(托管老师与托育老师工资构成不同)](https://foruda.gitee.com/images/1754030928630771824/d822fb8d_15549880.png "屏幕截图") ![学生缴费页](https://foruda.gitee.com/images/1754031159506405604/0e369bcd_15549880.png "屏幕截图") ## 👨‍💻 作者 谷嘉炜 邮箱:3101691246@qq.com