fix(model): update query logic to use OR for group_id filtering
This commit is contained in:
parent
ae784cbbe4
commit
f4050ff42e
@ -119,7 +119,7 @@ func (m *customServerModel) FindServerDetailByGroupIdsAndIds(ctx context.Context
|
|||||||
Model(&Server{}).
|
Model(&Server{}).
|
||||||
Where("enable = ?", true)
|
Where("enable = ?", true)
|
||||||
if len(groupId) > 0 {
|
if len(groupId) > 0 {
|
||||||
conn = conn.Where("group_id IN ?", groupId)
|
conn = conn.Or("group_id IN ?", groupId)
|
||||||
}
|
}
|
||||||
if len(ids) > 0 {
|
if len(ids) > 0 {
|
||||||
conn = conn.Where("id IN ?", ids)
|
conn = conn.Where("id IN ?", ids)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user