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.

45 lines
707 B
C#

using System;
using System.Collections.Generic;
public class ScanLogSocket
{
/// <summary>
///
///</summary>
public DateTime CreateTime
{
//get
//{
// DateTimeOffset dateTimeOffset = DateTimeOffset.FromUnixTimeMilliseconds(timestamp);
// return dateTimeOffset.UtcDateTime;
//}
get; set;
}
public long timestamp { get; set; }
public int data_type { get; set; }
public string rfid { get; set; }
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; }
}