Revert "提交"

This reverts commit b96d895809.
This commit is contained in:
2026-02-12 21:59:08 +08:00
parent b96d895809
commit d429560511
339 changed files with 46657 additions and 46655 deletions
+29 -29
View File
@@ -1,29 +1,29 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace IM_API.Models;
public partial class Device
{
public int Id { get; set; }
/// <summary>
/// 设备所属用户
/// </summary>
public int UserId { get; set; }
/// <summary>
/// 设备类型(
/// 0:Android,1:Ios,2:PC,3Pad,4:未知)
/// </summary>
public sbyte Dtype { get; set; }
/// <summary>
/// 最后一次登录
/// </summary>
[Column(TypeName = "datetimeoffset")]
public DateTimeOffset LastLogin { get; set; }
public virtual User User { get; set; } = null!;
}
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace IM_API.Models;
public partial class Device
{
public int Id { get; set; }
/// <summary>
/// 设备所属用户
/// </summary>
public int UserId { get; set; }
/// <summary>
/// 设备类型(
/// 0:Android,1:Ios,2:PC,3Pad,4:未知)
/// </summary>
public sbyte Dtype { get; set; }
/// <summary>
/// 最后一次登录
/// </summary>
[Column(TypeName = "datetimeoffset")]
public DateTimeOffset LastLogin { get; set; }
public virtual User User { get; set; } = null!;
}