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