From cb6d3598fe0c7a676fe1f1d124ebef569ed00782 Mon Sep 17 00:00:00 2001 From: Joshi <3040996759@qq.com> Date: Thu, 26 Feb 2026 18:06:41 +0800 Subject: [PATCH] =?UTF-8?q?refactor(hrm):=20=E7=A7=BB=E9=99=A4=E5=AF=86?= =?UTF-8?q?=E5=B0=81=E8=AF=B7=E6=B1=82=E6=98=A0=E5=B0=84=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E5=88=AB=E5=90=8D=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了 customer_id 的 AS customerId 别名 - 移除了 inst_id 的 AS instId 别名 - 简化了字段选择的映射结构 --- fad-hrm/src/main/resources/mapper/HrmSealReqMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fad-hrm/src/main/resources/mapper/HrmSealReqMapper.xml b/fad-hrm/src/main/resources/mapper/HrmSealReqMapper.xml index 233b127..871636a 100644 --- a/fad-hrm/src/main/resources/mapper/HrmSealReqMapper.xml +++ b/fad-hrm/src/main/resources/mapper/HrmSealReqMapper.xml @@ -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