This website works better with JavaScript.
Home
Explore
Help
Sign In
davidhui
/
TSMS-backend
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
fix uat error ("Team" -> "team")
tags/Baseline_30082024_BACKEND_UAT
cyril.tsui
1 year ago
parent
f85d458a0c
commit
53d30a07eb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/main/java/com/ffii/tsms/modules/data/service/TeamService.kt
+ 1
- 1
src/main/java/com/ffii/tsms/modules/data/service/TeamService.kt
View File
@@ -16,7 +16,7 @@ open class TeamService(
val sql = StringBuilder("select"
+ " t.id as id,"
+ " t.name as label"
+ " from
T
eam t"
+ " from
t
eam t"
+ " where t.deleted = false "
)
return jdbcDao.queryForList(sql.toString(), args)
Write
Preview
Loading…
Cancel
Save