69 lines
1.7 KiB
C#
69 lines
1.7 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Game")]
|
|
public class unit_user_maxname
|
|
{
|
|
/// <summary>
|
|
/// umnId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string umnId { get; set; }
|
|
|
|
/// <summary>
|
|
/// userId
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = false)]
|
|
public string userId { get; set; }
|
|
|
|
/// <summary>
|
|
/// mnId
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = false)]
|
|
public string mnId { get; set; }
|
|
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string name { get; set; }
|
|
|
|
/// <summary>
|
|
/// img
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string img { get; set; }
|
|
|
|
/// <summary>
|
|
/// attr
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, IsJson = true)]
|
|
public List<AttrItem> attr { get; set; }
|
|
|
|
/// <summary>
|
|
/// count
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? count { get; set; }
|
|
|
|
/// <summary>
|
|
/// addTime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime? addTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// endTime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime? endTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// show
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? show { get; set; }
|
|
}
|
|
} |