新增了dockerfile,修改了病例新增、登陆逻辑

This commit is contained in:
2025-06-25 13:18:20 +08:00
parent 4c74b0dd01
commit a5197591bc
16 changed files with 803 additions and 646 deletions
@@ -33,12 +33,13 @@
t_caseplatform_case.*,
t_caseplatform_user.*,
t_caseplatform_case_abstract.*,
t_caseplatform_case_checkdata.*
t_caseplatform_case_checkdata.*,
t_caseplatform_case_prognosis.*
FROM t_caseplatform_case
left join t_caseplatform_user on t_caseplatform_case.user_id = t_caseplatform_user.id
left join t_caseplatform_case_abstract on t_caseplatform_case_abstract.case_id = t_caseplatform_case.id
left join t_caseplatform_case_checkdata on t_caseplatform_case_checkdata.case_id = t_caseplatform_case.id
left join t_caseplatform_case_prognosis on t_caseplatform_case_prognosis.case_id = t_caseplatform_case.id
where t_caseplatform_case.id = #{MedicalRecordId}
</select>