...
|
...
|
@@ -69,7 +69,7 @@ func (repo *LogSmsRepository) Find(queryOptions map[string]interface{}) (int, [] |
|
|
query.Where("execute_at<=?", v)
|
|
|
}
|
|
|
if v, ok := queryOptions["from"]; ok {
|
|
|
query.Where("from=?", v)
|
|
|
query.Where(`"from"=?`, v)
|
|
|
}
|
|
|
if v, ok := queryOptions["index"]; ok {
|
|
|
query.Where("index=?", v)
|
...
|
...
|
|