Compare commits

...

2 Commits

Author SHA1 Message Date
bootvue 8da5b4a045
Merge a292adddc6 into cd71fcbcda 2024-03-10 06:29:28 -06:00
bootvue a292adddc6 fix client query sql 2023-10-10 13:47:23 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -55,6 +55,6 @@ public interface SecureConstant {
/**
* 查询client_id
*/
String DEFAULT_SELECT_STATEMENT = BASE_STATEMENT + " where client_id = ?";
String DEFAULT_SELECT_STATEMENT = BASE_STATEMENT + " where client_id = ? and is_deleted = 0";
}