28 lines
597 B
C#
28 lines
597 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Game")]
|
|
public class unit_user_exp
|
|
{
|
|
/// <summary>
|
|
/// userId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string userId { get; set; }
|
|
|
|
/// <summary>
|
|
/// exp
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? exp { get; set; }
|
|
|
|
/// <summary>
|
|
/// upExp
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? upExp { get; set; }
|
|
}
|
|
}
|