我有一个带有时间的 xml
<Opened date="2012-09-13T18:30:34+05:30" Lang_Code="ENG"></Opened>
我需要以 proto3 格式表示它并发送生成的 java 类。使用什么数据类型?我试过 google.protobuf.Timestamp 但这不符合要求。
syntax = "proto3";
message Opened{
<what data type?> date =1;
string lang_code=2;
}