style(mapper): 统一SQL映射文件中的字段别名格式

- 在OutpatientRegistrationAppMapper.xml中将register_time别名添加引号
- 在DoctorStationMainAppMapper.xml中将register_time别名添加引号
- 在TencentAppMapper.xml中为两个register_time别名添加引号
- 确保所有字段别名使用一致的引号格式以避免解析错误
This commit is contained in:
2026-04-07 14:01:00 +08:00
parent 3b0a359412
commit 63a9e26abf
3 changed files with 4 additions and 4 deletions

View File

@@ -84,7 +84,7 @@
T8.gender_enum AS gender_enum, T8.gender_enum AS gender_enum,
T8.id_card AS id_card, T8.id_card AS id_card,
T1.status_enum AS status_enum, T1.status_enum AS status_enum,
T1.create_time AS register_time, T1.create_time AS "register_time",
T10.total_price, T10.total_price,
T11."name" AS account_name, T11."name" AS account_name,
T12."name" AS enterer_name, T12."name" AS enterer_name,

View File

@@ -49,7 +49,7 @@
T8.phone AS phone, T8.phone AS phone,
T8.birth_date AS birth_date, T8.birth_date AS birth_date,
T1.status_enum AS status_enum, T1.status_enum AS status_enum,
T1.create_time AS register_time, T1.create_time AS "register_time",
T1.reception_time AS reception_time, T1.reception_time AS reception_time,
T1.organization_id AS org_id, T1.organization_id AS org_id,
T8.bus_no AS bus_no, T8.bus_no AS bus_no,

View File

@@ -43,7 +43,7 @@
T8.gender_enum AS gender_enum, T8.gender_enum AS gender_enum,
T8.id_card AS id_card, T8.id_card AS id_card,
T1.status_enum AS status_enum, T1.status_enum AS status_enum,
T1.create_time AS register_time, T1.create_time AS "register_time",
T10.total_price, T10.total_price,
T11."name" AS account_name, T11."name" AS account_name,
T12."name" AS enterer_name, T12."name" AS enterer_name,
@@ -140,7 +140,7 @@
T8.phone AS phone, T8.phone AS phone,
T8.birth_date AS birth_date, T8.birth_date AS birth_date,
T1.status_enum AS status_enum, T1.status_enum AS status_enum,
T1.create_time AS register_time, T1.create_time AS "register_time",
T1.reception_time AS reception_time, T1.reception_time AS reception_time,
T1.organization_id AS org_id, T1.organization_id AS org_id,
T8.bus_no AS bus_no, T8.bus_no AS bus_no,