Commit 61a3e5b9 authored by 李增强's avatar 李增强

m

parent 37038aa2
...@@ -70,7 +70,7 @@ class QMTJ { ...@@ -70,7 +70,7 @@ class QMTJ {
/// APP 不可见 /// APP 不可见
static void appDisappear() { static void appDisappear() {
_db.db.update("app_tj", {"disappear_time": _getDateNow()}, _db.db.update("app_tj", {"disappear_time": _getDateNow()},
where: "id = ? and appear_time =0", whereArgs: [_appStartUpId]); where: "id = ? and disappear_time = 0", whereArgs: [_appStartUpId]);
} }
/// PAGE 可见 /// PAGE 可见
...@@ -104,7 +104,7 @@ class QMTJ { ...@@ -104,7 +104,7 @@ class QMTJ {
{ {
"disappear_time": _getDateNow(), "disappear_time": _getDateNow(),
}, },
where: "id = ? and appear_time =0", where: "id = ? and disappear_time = 0",
whereArgs: [id]); whereArgs: [id]);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment