BadCase自定义Topic

This commit is contained in:
xuxinchao
2022-10-26 10:53:19 +08:00
parent c473ed4161
commit 6c64b74384
26 changed files with 764 additions and 143 deletions

View File

@@ -259,10 +259,12 @@ object CallerAutoPilotManager {
* @param recordType 0:不需要修改内置类型的topic组合, 1:需要修改内置类型的topic组合
* @param topicsNeedToCache
*/
fun getBadCaseConfig(reqType: Int,recordType: Int,topicsNeedToCache: List<String>){
fun getBadCaseConfig(reqType: Int,recordType: Int,topicsNeedToCache: List<String>): Boolean?{
// 司机屏才能查询数据采集的配置
if (AppIdentityModeUtils.isDriver(FunctionBuildConfig.appIdentityMode)) {
providerApi?.getBadCaseConfig(reqType, recordType, topicsNeedToCache)
return providerApi?.getBadCaseConfig(reqType, recordType, topicsNeedToCache)
}else{
return false
}
}