Skip to content

Commit

Permalink
node info dao
Browse files Browse the repository at this point in the history
  • Loading branch information
zouhuajian committed Apr 6, 2020
1 parent 7045f07 commit 84b09bd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public interface INodeInfoDao {
"<foreach item='node' collection='nodeInfoParam.nodeList' open='(' separator=',' close=')'>" +
"#{node}" +
"</foreach>" +
" AND last_time IN (1, 0)" +
"</script>")
List<NodeInfo> selectNodeInfoList(@Param("nodeInfoParam") NodeInfoParam nodeInfoParam);

Expand All @@ -50,7 +51,7 @@ public interface INodeInfoDao {
"<foreach item='node' collection='nodeInfoParam.nodeList' open='(' separator=',' close=')'>" +
"#{node}" +
"</foreach>" +
"AND last_time IN (1, 0)" +
" AND last_time IN (1, 0)" +
"</script>")
List<NodeInfo> selectNodeInfoListWithInfoItem(@Param("nodeInfoParam") NodeInfoParam nodeInfoParam);

Expand Down

0 comments on commit 84b09bd

Please sign in to comment.