41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 用户使用过的设备列表
|
|
/// </summary>
|
|
[SugarTable("YB_UserDev", TableDescription = "用户使用过的设备列表", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_UserDev
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "设备ID")]
|
|
public int DevId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "用户ID", IndexGroupNameList = new string[] { "index_userid" })]
|
|
public int UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "创建时间")]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|