style(mapper): 统一SQL映射文件中的字段别名格式
- 在OutpatientRegistrationAppMapper.xml中将register_time别名添加引号 - 在DoctorStationMainAppMapper.xml中将register_time别名添加引号 - 在TencentAppMapper.xml中为两个register_time别名添加引号 - 确保所有字段别名使用一致的引号格式以避免解析错误
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
T8.gender_enum AS gender_enum,
|
||||
T8.id_card AS id_card,
|
||||
T1.status_enum AS status_enum,
|
||||
T1.create_time AS register_time,
|
||||
T1.create_time AS "register_time",
|
||||
T10.total_price,
|
||||
T11."name" AS account_name,
|
||||
T12."name" AS enterer_name,
|
||||
@@ -140,7 +140,7 @@
|
||||
T8.phone AS phone,
|
||||
T8.birth_date AS birth_date,
|
||||
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.organization_id AS org_id,
|
||||
T8.bus_no AS bus_no,
|
||||
|
||||
Reference in New Issue
Block a user