You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
679 B
C#

2 months ago
using System;
2 months ago
using System.Collections.Generic;
2 months ago
public class ScanLogSocket
{
/// <summary>
///
///</summary>
public DateTime CreateTime
{
get
{
DateTimeOffset dateTimeOffset = DateTimeOffset.FromUnixTimeMilliseconds(timestamp);
return dateTimeOffset.UtcDateTime;
}
}
public long timestamp { get; set; }
public int data_type { get; set; }
2 months ago
public string rfid { get; set; }
2 months ago
public string code { get; set; }
public string ocr { get; set; }
public string url { get; set; }
public string isOk { get; set; }
public string result { get; set; }
2 months ago
}