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