panlei
2019-08-22 dc8ca60fc53199251100883b4370de52a6534463
protomsg.proto
@@ -192,7 +192,9 @@
    bool must = 4;//参数是否必填
    string unit = 5;//单位
    string range = 6;//参数的范围
    int32 sort = 7;//参数排序
    string default_value = 7;//参数默认值
    string default_operator = 8;//参数默认计算符号
    int32 sort = 9;//参数排序
}
//TableChanged enum
@@ -260,6 +262,16 @@
    string analyServerId = 12;
}
message SdkCompareEach {
    string id           = 1;
    string tableid      = 2;
    float  compareScore = 3;
}
message SdkCompareResult {
    repeated SdkCompareEach compareResult = 1;
}
message EventPush {
    string id = 1;
    string name = 2;
@@ -296,9 +308,16 @@
    bool enable = 2;
}
enum EsCacheChanged {
    T_DbTable = 0;//底库有效状态变化
    T_DbTablePerson = 1;//底库人员有效状态变化
}
message EsPersonCacheChange {
    string table_id = 1;//底库id
    string person_id = 2;//人员id
    bytes feature = 3;//特征值
    DbAction action = 4;
    EsCacheChanged type = 1;
    repeated string table_id = 2;//底库id
    string person_id = 3;//人员id
    string feature = 4;//特征值base64
    DbAction action = 5;
    int32 enable = 6;
}