fix client query sql

This commit is contained in:
bootvue 2023-10-10 13:47:23 +00:00
parent 077a6bf44d
commit a292adddc6

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";
}