美文网首页
Timestamp not defined解决

Timestamp not defined解决

作者: 血之君殇 | 来源:发表于2020-09-07 17:01 被阅读0次

    问题

    想使用谷歌的Well-Know Types,但按照官方提供的文档写完会报错,提示Timestamp not defined

    正确用法

    import "google/protobuf/timestamp.proto";
    import "google/protobuf/empty.proto";
    
    message Query{
        string Action = 1;
        int32 Code = 2;
        google.protobuf.Timestamp Start = 3;
        google.protobuf.Timestamp End = 4;
    }
    

    如上所示,需要先引入,然后使用全包名,而不是官方文档里的只有最后的类型

    相关文章

      网友评论

          本文标题:Timestamp not defined解决

          本文链接:https://www.haomeiwen.com/subject/rkhlektx.html