using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_maxname
{
///
/// umnId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string umnId { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = false)]
public string userId { get; set; }
///
/// mnId
///
[SugarColumn(Length = 50, IsNullable = false)]
public string mnId { get; set; }
///
/// name
///
[SugarColumn(Length = 50, IsNullable = true)]
public string name { get; set; }
///
/// img
///
[SugarColumn(Length = 50, IsNullable = true)]
public string img { get; set; }
///
/// attr
///
[SugarColumn(Length = 1000, IsNullable = true)]
public string attr { get; set; }
///
/// count
///
[SugarColumn(IsNullable = true)]
public int? count { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
///
/// endTime
///
[SugarColumn(IsNullable = true)]
public DateTime? endTime { get; set; }
///
/// show
///
[SugarColumn(IsNullable = true)]
public int? show { get; set; }
}
}