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
+41 -41
View File
@@ -1,41 +1,41 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace IM_API.Models;
public partial class GroupRequest
{
public int Id { get; set; }
/// <summary>
/// 群聊编号
///
/// </summary>
public int GroupId { get; set; }
/// <summary>
/// 申请人
/// </summary>
public int UserId { get; set; }
/// <summary>
/// 申请状态(0:待管理员同意,1:已拒绝,2:已同意)
/// </summary>
public sbyte State { get; set; }
/// <summary>
/// 入群附言
/// </summary>
public string Description { get; set; } = null!;
/// <summary>
/// 创建时间
/// </summary>
[Column(TypeName = "datetimeoffset")]
public DateTimeOffset Created { get; set; }
public virtual Group Group { get; set; } = null!;
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 GroupRequest
{
public int Id { get; set; }
/// <summary>
/// 群聊编号
///
/// </summary>
public int GroupId { get; set; }
/// <summary>
/// 申请人
/// </summary>
public int UserId { get; set; }
/// <summary>
/// 申请状态(0:待管理员同意,1:已拒绝,2:已同意)
/// </summary>
public sbyte State { get; set; }
/// <summary>
/// 入群附言
/// </summary>
public string Description { get; set; } = null!;
/// <summary>
/// 创建时间
/// </summary>
[Column(TypeName = "datetimeoffset")]
public DateTimeOffset Created { get; set; }
public virtual Group Group { get; set; } = null!;
public virtual User User { get; set; } = null!;
}