Files

15 lines
332 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using SqlSugar;
using System;
namespace DouyinApi.Model
{
public class RootEntityTkey<Tkey> where Tkey : IEquatable<Tkey>
{
/// <summary>
/// ID
/// 泛型主键Tkey
/// </summary>
[SugarColumn(IsNullable = false, IsPrimaryKey = true)]
public Tkey Id { get; set; }
}
}