207640f4efa9726612f48c6b1ca810a79df2a736
根因分析: 1. Patient实体/PatientBaseInfoDto缺少postalCode,hukouAddress,guardian*,patientDerived,companyAddress字段 2. PatientManageMapper.xml外层SELECT缺少这些字段导致查询不返回 3. handlePatientInfo使用updateById默认NOT_NULL策略导致null字段不更新 4. patientAddDialog.vue的reset()未初始化这些字段 修复内容: - Patient.java: 补全缺失字段定义 - PatientBaseInfoDto.java: 补全缺失DTO字段 - PatientManageMapper.xml: SQL补全SELECT字段 - PatientInformationServiceImpl.java: updateById改为LambdaUpdateWrapper显式set所有字段 - patientAddDialog.vue: reset()/show()补全字段初始化 - V2026_0608_1: Flyway迁移脚本确保数据库字段存在
Description
No description provided
Languages
Java
47.5%
Vue
45.4%
JavaScript
4.4%
Python
1.3%
HTML
0.6%
Other
0.7%