using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 用户使用过的设备类型 /// [SugarTable("YB_UserEqu", TableDescription = "用户使用过的设备类型", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_UserEqu { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 设备类型 /// [SugarColumn(ColumnDescription = "设备类型", IndexGroupNameList = new string[] { "index_devtype" })] public int DevType { get; set; } /// /// 用户ID /// [SugarColumn(ColumnDescription = "用户ID", IndexGroupNameList = new string[] { "index_userid" })] public int UserId { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间")] public DateTime CreateTime { get; set; } } }