Skip to content

Commit

Permalink
Update RobotExecutorDAO.java
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 authored Aug 13, 2024
1 parent cc368dd commit 90d2412
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public AnswerList<RobotExecutor> readByVariousByCriteria(List<String> robot, Str
searchSQL.append(" and (").append(SqlUtil.generateInClause("rbe.`robot`", robot)).append(")");
}
if (!StringUtil.isEmptyOrNull(active)) {
searchSQL.append(" and (`active` = ? )");
searchSQL.append(" and (`isactive` = ? )");
}
query.append(searchSQL);

Expand Down

0 comments on commit 90d2412

Please sign in to comment.