10f3d96ecd9b7028a811794fc1df0aef81fc84b4..e1e6c52f78473b3e8711006e398f8052f6ae6dec
2023-02-10 cheliequan
Merge branch 'master' of http://192.168.5.5:10010/r/pubsub/protomsg
e1e6c5 对比 | 目录
2023-02-10 cheliequan
增加SOResult相关结构体
5d4836 对比 | 目录
2个文件已修改
3989 ■■■■■ 已修改文件
dataprocess.pb.go 3953 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
dataprocess.proto 36 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
dataprocess.pb.go
Diff too large
dataprocess.proto
@@ -17,13 +17,43 @@
    string  FileId = 9;      // 数据栈中的文件id
}
message RuleParams {
    string SdkArgAlias = 1;
    string Operator = 2;
    string OperatorType = 3;
    string SdkArgValue = 4;
}
message SoRule {
    string Id = 1;
    string CameraId = 2;
    string PolygonId = 3;
    string SdkId = 4;
    int32 Sort = 5;
    string RuleWithPre = 6;
    bool IsSaveAnyhow =7;
    string GroupId = 8;
    repeated RuleParams Params = 9;
}
message SOResult {
    bool IsEvent = 1;
    bool IsEndRecord = 2;
    repeated SoTarget Targets = 3;
    Image FirstImage = 4;
    Image CacheImage = 5;
    SoRule SoRule = 6;
    GroupRule GroupRule = 7;
    string SoType = 8;
}
message SoTarget {
    Target SrcTarget = 1;       
    string AreaId    = 2;
    string AreaName  = 3;
    string AreaId = 2;
    string AreaName = 3;
    string BelongsTargetID = 4;
    repeated RuleBaseCompareInfo CompDbInfo = 5;
    int64 ImageId   = 6;
    int64 ImageId = 6;
}
message EventCache {