01 2024 档案
摘要:今天参加了学校组织的天梯赛,发现了自己的许多问题,需要总结一下。 1、题目安排的顺序让我需要自己分辨难易程度然后答题,我觉得这很大程度上会影响我答题的进程。 2、解题更重要的是思想,我觉得需要了解这个题目具体需要的一些知识点,然后再配合解题。
阅读全文
摘要:index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>用户登录</title> <link rel="stylesheet" href="Style.css"> </head> <body>
阅读全文
摘要:今天学习一下小程序对应的一些基础知识,其中小程序开发和网页开发还是存在一些区别的,比如运行环境、API、开发模式不同等不同。 接下来我们注册微信小程序开发账号 注册完后登录开发主页面,获取到创建项目时所需要的微信小程序ID 然后我们安装开发小程序工具--微信开发者工具,它有以下特点 工具主界面
阅读全文
摘要:2update.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>修改旅游费</title> <link rel="stylesheet" href="../Style.css"> </head> <
阅读全文
摘要:1update.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>修改出差申请</title> <link rel="stylesheet" href="../Style.css"> </head>
阅读全文
摘要:今天实现前端职员的功能页面 1insert.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>申请出差</title> <link rel="stylesheet" href="../Style.cs
阅读全文
摘要:今天实现Controller类 package com.example.controller; import com.example.pojo.Application; import com.example.pojo.Baoxiao; import com.example.pojo.Result;
阅读全文
摘要:今天实现Service类 package com.example.service; import com.example.mapper.UserMapper; import com.example.pojo.Application; import com.example.pojo.Baoxiao;
阅读全文
摘要:今天实现接触数据库的Mapper类 package com.example.mapper; import com.example.pojo.Application; import com.example.pojo.Baoxiao; import com.example.pojo.Staff; imp
阅读全文
摘要:今天实现实体类 Result.java package com.example.pojo; /** * 统一响应结果封装类 */ public class Result { private Integer code;//1 成功 , 0 失败 private String msg; //提示信息 p
阅读全文
摘要:今天复习一下期末考试内容。 差旅费报销管理信息系统(50分) 1、项目背景: 随着企业规模的扩大和业务的复杂化,报销管理成为了企业日常运营中不可或缺的一环。为了提高效率和减少人力成本,许多企业开始引入报销系统来简化和优化报销流程。为了避免人力物力财力浪费、降低办公成本、提高办事效率,是企业领导关注的
阅读全文