Commit 2527110d authored by 李增强's avatar 李增强

m

parent 5bec8fd5
......@@ -28,7 +28,7 @@ class QMTJ {
int disappearTime = 0;
int appearTime = _getDateNow();
String id = _appStartUpId;
Map<String, dynamic> map = {
Map map = {
"id": id,
"type": type,
"source": source,
......@@ -49,7 +49,7 @@ class QMTJ {
int disappearTime = 0;
int appearTime = _getDateNow();
String id = _appStartUpId;
Map<String, dynamic> map = {
Map map = {
"id": id,
"type": type,
"source": source,
......@@ -66,7 +66,7 @@ class QMTJ {
int disappearTime = _getDateNow();
_db.db.update("app_tj", {"disappear_time": disappearTime},
where: "id = ? and disappear_time = 0", whereArgs: [_appStartUpId]);
Map<String, dynamic> map = {
Map map = {
"id": _appStartUpId,
"disappear_time": disappearTime,
};
......@@ -83,7 +83,7 @@ class QMTJ {
String id = _md5("${pageId}_${lastPageId}_$extrasStr");
int disappearTime = 0;
int appearTime = _getDateNow();
Map<String, dynamic> map = {
Map map = {
"id": id,
"source": source,
"page_id": pageId,
......@@ -109,7 +109,7 @@ class QMTJ {
},
where: "id = ? and disappear_time = 0",
whereArgs: [id]);
Map<String, dynamic> map = {
Map map = {
"id": id,
"page_id": pageId,
"last_page_id": lastPageId,
......@@ -131,7 +131,7 @@ class QMTJ {
int clickTime = _getDateNow();
String extrasStr = json.encode(extras);
String id = _md5("${pageId}_${clickId}_${extrasStr}_${clickTime}");
Map<String, dynamic> map = {
Map map = {
"id": id,
"source": source,
"page_id": pageId,
......@@ -155,7 +155,7 @@ class QMTJ {
int exposureTime = _getDateNow();
String extrasStr = json.encode(extras);
String id = _md5("${pageId}_${exposureId}_${extrasStr}_${exposureTime}");
Map<String, dynamic> map = {
Map map = {
"id": id,
"source": source,
"page_id": pageId,
......@@ -180,7 +180,7 @@ class QMTJ {
return digest.toString();
}
static void log(String type, Map<String, dynamic> map) {
static void log(String type, Map map) {
if (!isDebug) {
return;
}
......
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