上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页
摘要: DeviceFault package com.example.demo.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; im 阅读全文
posted @ 2025-05-07 22:04 QixunQiu 阅读(14) 评论(0) 推荐(0)
摘要: DeviceController package com.example.demo.controller; import com.example.demo.common.Result; import com.example.demo.entity.Device; import com.example 阅读全文
posted @ 2025-04-22 23:16 QixunQiu 阅读(10) 评论(0) 推荐(0)
摘要: ​​第四章:代码规范与质量保障​​ ​​我过去是怎么做的​​ 过去,我在编写代码时,往往更关注功能的实现,而忽略了代码的可读性、可维护性和规范性。例如: ​​命名随意​​:变量名使用a、temp等无意义的名称,函数名不能清晰表达其功能。 ​​代码冗余​​:存在大量重复代码,未进行合理的函数封装或模块 阅读全文
posted @ 2025-04-22 23:10 QixunQiu 阅读(20) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>图片转BAS 阅读全文
posted @ 2025-04-22 23:00 QixunQiu 阅读(24) 评论(0) 推荐(0)
摘要: const express = require('express'); const bodyParser = require('body-parser'); const mysql = require('mysql'); const app = express(); const port = 300 阅读全文
posted @ 2025-04-17 00:02 QixunQiu 阅读(15) 评论(0) 推荐(0)
摘要: 完成了注册的功能 可以检测是否重名,输入是否符合规范,密码的二重验证。 具体后端 RegisterRequest package com.example.demo.dto; import lombok.Data; /* * Qi * 25/4/16 * 注册 * */ @Data public cl 阅读全文
posted @ 2025-04-16 23:43 QixunQiu 阅读(26) 评论(0) 推荐(0)
摘要: 第三章:敏捷开发与团队协作 ​​我过去是怎么做的​​ 过去,我在参与团队开发项目时,往往习惯于传统的瀑布模型,严格按照需求→设计→开发→测试的线性流程推进。这种模式下,需求变更被视为“干扰”,团队沟通主要集中在阶段交接时,导致问题积压到后期才暴露。例如,开发阶段发现需求不明确时,通常选择自行猜测而非 阅读全文
posted @ 2025-04-14 21:39 QixunQiu 阅读(29) 评论(0) 推荐(0)
摘要: 第一次会议对题目进行了分析、讨论,确定了系统需要的各个模块; 对需要的功能以及流程进行了大致的梳理,并对第一阶段任务进行了分配,同时设计了初始的数据库表和网页页面布局。 阅读全文
posted @ 2025-04-14 21:31 QixunQiu 阅读(14) 评论(0) 推荐(0)
摘要: PolicyList.vue <template> <div class="policy-container"> <el-container> <el-aside width="250px"> <el-tree ref="treeRef" :data="typeTree" :props="defau 阅读全文
posted @ 2025-04-02 21:38 QixunQiu 阅读(30) 评论(0) 推荐(0)
摘要: 第二章:软件工程的构建原则与实践 我过去是怎么做的 过去,我在开发项目时,常常过于关注功能的实现,而忽略了整体架构的设计和代码的可维护性。在需求分析阶段,我通常只是简单地记录用户的需求,而没有深入挖掘潜在的需求或考虑需求的优先级。设计阶段也常常被压缩,直接进入编码阶段,导致代码结构混乱,模块之间的耦 阅读全文
posted @ 2025-04-01 23:11 QixunQiu 阅读(24) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页