using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_badge
{
///
/// ubId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string ubId { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string userId { get; set; }
///
/// badgeId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string badgeId { get; set; }
///
/// name
///
[SugarColumn(Length = 50, IsNullable = true)]
public string name { get; set; }
///
/// img
///
[SugarColumn(Length = 50, IsNullable = true)]
public string img { get; set; }
///
/// show
///
[SugarColumn(IsNullable = true)]
public int? show { get; set; }
///
/// showChat
///
[SugarColumn(IsNullable = true)]
public int? showChat { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
}
}