Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_badge.cs
2026-07-13 14:28:33 +08:00

34 lines
778 B
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_badge
{
/// <summary>
/// badgeId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string badgeId { get; set; }
/// <summary>
/// name
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string name { get; set; }
/// <summary>
/// remark
/// </summary>
[SugarColumn(IsNullable = true)]
public string remark { get; set; }
/// <summary>
/// img
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string img { get; set; }
}
}