refactor(hrm): 移除密封请求映射中的别名定义
- 移除了 customer_id 的 AS customerId 别名 - 移除了 inst_id 的 AS instId 别名 - 简化了字段选择的映射结构
This commit is contained in:
@@ -57,8 +57,8 @@
|
||||
p.project_status,
|
||||
p.product_status,
|
||||
p.color,
|
||||
p.customer_id AS customerId,
|
||||
i.inst_id AS instId
|
||||
p.customer_id,
|
||||
i.inst_id
|
||||
FROM hrm_seal_req s
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user