Skip to content

Commit

Permalink
feat:流水线查看和构建详情查看配置界面敏感字段展示优化 #11019
Browse files Browse the repository at this point in the history
  • Loading branch information
yjieliang committed Jan 14, 2025
1 parent 44042a3 commit 8ce2802
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ import org.jooq.Record
import org.jooq.Record1
import org.jooq.Record3
import org.jooq.Record4
import org.jooq.Record5
import org.jooq.Result
import org.jooq.SelectOnConditionStep
import org.jooq.impl.DSL
Expand Down Expand Up @@ -1481,7 +1482,7 @@ class AtomDao : AtomBaseDao() {
statusList: List<Byte>,
offset: Int? = null,
limit: Int? = null
): Result<Record4<String, String, String, Byte>> {
): Result<Record5<String, String, String, Byte, Boolean>> {
with(TAtom.T_ATOM) {
val conditions = mutableListOf<Condition>()
if (!atomCode.isNullOrBlank()) {
Expand All @@ -1492,7 +1493,8 @@ class AtomDao : AtomBaseDao() {
ATOM_CODE,
VERSION,
PROPS,
ATOM_STATUS
ATOM_STATUS,
LATEST_FLAG
).from(this)
.where(conditions)
.orderBy(CREATE_TIME, ID)
Expand Down

0 comments on commit 8ce2802

Please sign in to comment.