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