上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 27 下一页
摘要: 功能4:发送内部消息 InternalMessageMapper 点击查看代码 @Insert("INSERT ft_internalmessage VALUES(null,#{category},#{senderName},#{senderNo},#{receiverName},#{receive 阅读全文
posted @ 2025-02-18 08:59 Moonbeamsc 阅读(24) 评论(0) 推荐(0)
摘要: 功能3:删除日报 DailyReportMapper 点击查看代码 @Delete("delete from ft_dailyreport where id=#{id}") @ResultMap("DailyReportResultMap") void deleteDailyReportById(@ 阅读全文
posted @ 2025-02-18 08:57 Moonbeamsc 阅读(24) 评论(0) 推荐(0)
摘要: 功能2:修改日报 DailyReportMapper 点击查看代码 @Update("update ft_dailyreport set publishDate =#{publishDate},spentTime =#{spentTime},codeamount=#{codeamount},blog 阅读全文
posted @ 2025-02-18 08:56 Moonbeamsc 阅读(25) 评论(0) 推荐(0)
摘要: 功能1:发表日报 DailyReportMapper 点击查看代码 /** * 发表日报 * @param dailyReport */ @Insert("insert ft_dailyreport values (null,#{publishDate},#{stuno},#{name},#{spe 阅读全文
posted @ 2025-02-18 08:55 Moonbeamsc 阅读(22) 评论(0) 推荐(0)
摘要: 以下为数据库层面准备 sql: 点击查看代码 create table ft_user( id int primary key auto_increment, username varchar(30), password varchar(30), identify varchar(100) ); c 阅读全文
posted @ 2025-02-18 08:51 Moonbeamsc 阅读(289) 评论(0) 推荐(0)
摘要: 环境准备: mybatis-config.xml 点击查看代码 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://my 阅读全文
posted @ 2025-02-18 08:48 Moonbeamsc 阅读(25) 评论(0) 推荐(0)
摘要: 题目与文件架构 2023级《JAVA语言程序设计》 上机考试试题 2024.12.27 考试要求 一、本试卷为2023级《JAVA语言程序设计》上机考试试卷; 二. 注意编程规范: (1)程序开头部分注释班级、作者、学号、日期; (2)注意程序代码中必要的空格与缩进; (3)注意类、变量、方法的命名 阅读全文
posted @ 2025-02-17 23:11 Moonbeamsc 阅读(42) 评论(0) 推荐(0)
摘要: com/Moonbeams/mapper BrandMapper.xml 点击查看代码 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http 阅读全文
posted @ 2025-02-17 23:07 Moonbeamsc 阅读(12) 评论(0) 推荐(0)
摘要: 查询所有品牌:从数据库中获取所有品牌信息并返回。 添加品牌:将新品牌信息插入数据库。 批量删除:根据提供的ID数组批量删除品牌。 分页查询:根据当前页码和每页展示条数进行分页查询。 分页条件查询:根据条件进行分页查询,支持模糊查询和状态过滤。 下面是所有文件内容的汇总 com.Moonbeams.M 阅读全文
posted @ 2025-02-17 23:05 Moonbeamsc 阅读(38) 评论(0) 推荐(0)
摘要: 功能5:分页条件查询 BrandMapper 点击查看代码 /** * 分页条件查询 * @param begin * @param size * @return */ List<Brand> selectByPageAndCondition(@Param("begin") int begin,@P 阅读全文
posted @ 2025-02-17 22:57 Moonbeamsc 阅读(22) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 27 下一页
返回顶端