using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Face.Domain.Application.FaceAll { /// /// 操作日志表 /// public class ULog { /// /// id /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int id { get; set; } /// /// 操作人 /// [SugarColumn(ColumnDataType = "varchar(50)")] public string Uname { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime(3)")] public System.DateTime Creationtime { get; set; } /// /// 操作类型 /// [SugarColumn(ColumnDataType = "varchar(20)")] public string operatetype { get; set; } /// /// SN号 /// [SugarColumn(ColumnDataType = "varchar(100)",IsNullable =true)] public string faceSN { get; set; } /// /// 酒店id /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable hotelcode { get; set; } /// /// 房间id /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable roomid { get; set; } } }