We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20ddd65 commit 0be90f2Copy full SHA for 0be90f2
1 file changed
src/Apache.IoTDB/DataStructure/RowRecord.cs
@@ -9,8 +9,12 @@ public class RowRecord
9
{
10
public long Timestamps { get; }
11
public List<object> Values { get; }
12
- public List<string> Measurements { get; }
13
-
+ public List<string> Measurements { get; }
+
14
+ public RowRecord(DateTime timestamp, List<object> values, List<string> measurements)
15
+ :this(new DateTimeOffset(timestamp.ToUniversalTime()).ToUnixTimeMilliseconds(), values,measurements)
16
+ {
17
+ }
18
public RowRecord(long timestamps, List<object> values, List<string> measurements)
19
20
Timestamps = timestamps;
0 commit comments