支持修改已添加的主播以及自定义打招呼信息
This commit is contained in:
@@ -14,3 +14,8 @@ class AnchorModel:
|
||||
model.anchorId = d.get('anchorId', "")
|
||||
model.country = d.get('country', "")
|
||||
return model
|
||||
|
||||
# 模型转字典
|
||||
@classmethod
|
||||
def modelToDict(cls, model):
|
||||
return {"anchorId": model.anchorId, "country": model.country}
|
||||
|
||||
@@ -2,6 +2,7 @@ import threading
|
||||
from typing import Dict, Any
|
||||
from Entity.AnchorModel import AnchorModel
|
||||
|
||||
|
||||
# wda apple bundle id
|
||||
WdaAppBundleId = "com.yolozsAgent.wda.xctrunner"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user