正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
@@ -54,11 +54,11 @@ func (repo *LogSmsRepository) Find(queryOptions map[string]interface{}) (int, [] | @@ -54,11 +54,11 @@ func (repo *LogSmsRepository) Find(queryOptions map[string]interface{}) (int, [] | ||
54 | } | 54 | } |
55 | 55 | ||
56 | if v, ok := queryOptions["executeAtBegin"]; ok { | 56 | if v, ok := queryOptions["executeAtBegin"]; ok { |
57 | - query.Where("execute_at>=?", v) | 57 | + query.Where("execute_at<=?", v) |
58 | } | 58 | } |
59 | 59 | ||
60 | if v, ok := queryOptions["executeAtEnd"]; ok { | 60 | if v, ok := queryOptions["executeAtEnd"]; ok { |
61 | - query.Where("execute_at<=?", v) | 61 | + query.Where("execute_at>=?", v) |
62 | } | 62 | } |
63 | 63 | ||
64 | count, err := query.SelectAndCount() | 64 | count, err := query.SelectAndCount() |
-
请 注册 或 登录 后发表评论