Files

83 lines
2.2 KiB
C#
Raw Permalink Normal View History

2025-11-25 17:41:24 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain.Application.FaceAll
{
public class facedevicerxtxinfo
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int id { get; set; }
/// <summary>
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> pmsid { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(256)", IsNullable = true)]
public string sn { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(256)", IsNullable = true)]
public string msgid { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)]
public string cmd { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(10)", IsNullable = true)]
public string direction { get; set; }
/// <summary>
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> trresult { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(700)", IsNullable = true)]
public string data { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable<System.DateTime> datatime { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)]
public string ipaddr { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(256)", IsNullable = true)]
public string iplocation { get; set; }
}
}