Files
Web_Faces_Prod/Face.Domain/Application/FaceAll/pmsLog.cs

58 lines
1.5 KiB
C#
Raw Normal View History

2025-11-25 17:41:24 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain.Application.FaceAll
{
/// <summary>
/// pms日志表
/// </summary>
public class pmsLog
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int id { get; set; }
/// <summary>
/// pmsid
/// </summary>
[SugarColumn(ColumnDataType = "int")]
public int pmsid { get; set; }
/// <summary>
/// 步骤
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> step { get; set; }
/// <summary>
/// app 1是face 2是console
/// </summary>
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable<int> app { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable<System.DateTime> Creationtime { get; set; }
/// <summary>
/// 说明
/// </summary>
[SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)]
public string message { get; set; }
/// <summary>
/// 数据
/// </summary>
[SugarColumn(ColumnDataType = "varchar(500)", IsNullable = true)]
public string Data { get; set; }
}
}