上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 31 下一页
摘要: 今天实现前端的主页登录和管理员代码 index.HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>用户登录</title> <style> button { display: block; margi 阅读全文
posted @ 2023-12-18 12:32 七安。 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 今天实现bean类 Attendance package com.example.pojo; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @AllArgsConstruc 阅读全文
posted @ 2023-12-18 12:29 七安。 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 今天实现Mapper类 LogOnMapper package com.example.mapper; import com.example.pojo.Department; import com.example.pojo.Staff; import org.apache.ibatis.annota 阅读全文
posted @ 2023-12-18 12:28 七安。 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 今天实现Service类 LogOnService package com.example.service; import com.example.mapper.LogONMapper; import com.example.pojo.Department; import com.example.p 阅读全文
posted @ 2023-12-18 12:27 七安。 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 今天实现后端代码 package com.example.controller; import com.example.pojo.Department; import com.example.pojo.Result; import com.example.pojo.Staff; import com 阅读全文
posted @ 2023-12-18 12:26 七安。 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1、项目需求: 企业员工考勤管理系统是一个企业单位信息化建设不可缺少的部分。考勤管理系统是针对某公司对该公司职工的考勤、查询、信息录入、核查、统计分析等功能为一体的应用软件,为用户提供充足的信息和快捷的查询手段。 2.系统要求与功能设计 2.1 页面要求 (1)系统可以通过浏览器直接访问; (2)各 阅读全文
posted @ 2023-12-18 12:25 七安。 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 本次实现类变量的定义 Result package com.example.pojo; /** * 统一响应结果封装类 */ public class Result { private Integer code;//1 成功 , 0 失败 private String msg; //提示信息 pri 阅读全文
posted @ 2023-11-13 21:06 七安。 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 本次我们连着上次的代码继续实现,剩下最后一个教学副院长类 后端 PresidentController package com.example.controller; import com.example.pojo.Result; import com.example.service.Preside 阅读全文
posted @ 2023-11-13 21:05 七安。 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 今天完成了一个分级测试,主要包括不同用户登录的选课系统,主要功能如下: (1)能够在Tomcat服务器中正确部署,并通过浏览器查看; (2)网站页面整体风格统一; (3)首页(登录页)要求实现不同用户登录后,进入的功能页不相同。 (4)教师功能页:有添加课程、修改个人信息、浏览选课学生信息三个模块。 阅读全文
posted @ 2023-11-13 21:00 七安。 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 今天实现的是专业负责人的前后端代码 HeadController package com.example.controller; import com.example.pojo.Result; import com.example.service.HeadService; import org.sp 阅读全文
posted @ 2023-11-13 20:52 七安。 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 31 下一页