refactor(hrm): 移除密封请求映射中的别名定义

- 移除了 customer_id 的 AS customerId 别名
- 移除了 inst_id 的 AS instId 别名
- 简化了字段选择的映射结构
This commit is contained in:
2026-02-26 18:06:41 +08:00
parent b93168abdd
commit cb6d3598fe

View File

@@ -57,8 +57,8 @@
p.project_status, p.project_status,
p.product_status, p.product_status,
p.color, p.color,
p.customer_id AS customerId, p.customer_id,
i.inst_id AS instId i.inst_id
FROM hrm_seal_req s FROM hrm_seal_req s
LEFT JOIN sys_oa_project p ON s.project_id = p.project_id LEFT JOIN sys_oa_project p ON s.project_id = p.project_id
LEFT JOIN hrm_flow_instance i ON s.biz_id = i.biz_id and i.biz_type = 'seal' and i.del_flag = 0 LEFT JOIN hrm_flow_instance i ON s.biz_id = i.biz_id and i.biz_type = 'seal' and i.del_flag = 0