You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
628 B
40 lines
628 B
|
|
|
|
import os
|
|
import shutil
|
|
import re
|
|
import sys
|
|
import json
|
|
from enum import Enum, IntEnum
|
|
#bdc日志类型
|
|
class BdcCliType(IntEnum):
|
|
page_do = 20020
|
|
|
|
|
|
BdcCliHead = {
|
|
"page_do":[
|
|
"event_name",
|
|
"leave_page_id",
|
|
"arrive_page_id",
|
|
"leave_page_name",
|
|
"operate_way"
|
|
]
|
|
}
|
|
|
|
# BdcComHead = [
|
|
# "logtime",
|
|
# "timeStamp",
|
|
# "event_id",
|
|
# "user_id",
|
|
# "open_id",
|
|
# "role_id",
|
|
# "role_key",
|
|
# "server_id",
|
|
# "client_os",
|
|
# "device_id",
|
|
# "user_ip",
|
|
# "channel_id",
|
|
# "app_channel_id",
|
|
# "buess_time",
|
|
# "transaction_id",
|
|
# ]
|