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.

40 lines
753 B
C#

using SQLite;
using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.RfidUpload.Common
{
public class EmsLogData
{
public EmsLogData()
{
Id = SnowflakeFactory.NewId;
CreateTime = DateTime.Now;
}
[PrimaryKey]
public long Id { get; set; }
public string Remark { get; set; } = "";
public string ApiName { get; set; } = "";
public string ParamName { get; set; } = "";
public string paramStr { get; set; } = "";
public string Json { get; set; } = "";
public DateTime CreateTime { get; set; }
public string ResultJson { get; set; } = "";
public string Message = "";
}
}