From a5d456f4c54c8a0c3daded5b3f52ee10fc8dc5c0 Mon Sep 17 00:00:00 2001 From: "cyril.tsui" Date: Thu, 6 Jun 2024 12:02:54 +0800 Subject: [PATCH] update --- .../modules/project/entity/projections/ProjectSearchInfo.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/ffii/tsms/modules/project/entity/projections/ProjectSearchInfo.kt b/src/main/java/com/ffii/tsms/modules/project/entity/projections/ProjectSearchInfo.kt index 7843a95..9a45a96 100644 --- a/src/main/java/com/ffii/tsms/modules/project/entity/projections/ProjectSearchInfo.kt +++ b/src/main/java/com/ffii/tsms/modules/project/entity/projections/ProjectSearchInfo.kt @@ -20,6 +20,9 @@ interface ProjectSearchInfo { @get:Value("#{target.teamLead.team.code}") val team: String? + @get:Value("#{target.teamLead.team.id}") + val teamId: Long? + @get:Value("#{target.customer.name}") val client: String? }