修正专项核查调动详情主键链路

This commit is contained in:
wkc
2026-03-24 23:15:28 +08:00
parent 04c9cfc42e
commit 0fc61aa3cb
3 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,9 @@ import lombok.Data;
@Data
public class CcdiProjectExtendedTransferListItemVO {
/** 主键ID */
private Long id;
/** 员工姓名 */
private String staffName;

View File

@@ -59,6 +59,7 @@
<resultMap id="ExtendedTransferListItemResultMap"
type="com.ruoyi.ccdi.project.domain.vo.CcdiProjectExtendedTransferListItemVO">
<id property="id" column="id"/>
<result property="staffName" column="staff_name"/>
<result property="transferType" column="transfer_type"/>
<result property="deptNameBefore" column="dept_name_before"/>
@@ -644,6 +645,7 @@
<select id="selectExtendedTransferPage" resultMap="ExtendedTransferListItemResultMap">
select
t.id,
s.name as staff_name,
t.transfer_type,
t.dept_name_before,

View File

@@ -134,6 +134,7 @@ class CcdiProjectSpecialCheckExtendedQueryContractTest {
);
assertExactFields(
"com.ruoyi.ccdi.project.domain.vo.CcdiProjectExtendedTransferListItemVO",
"id",
"staffName",
"transferType",
"deptNameBefore",