using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_data
{
///
/// userId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
///
/// 师德
///
[SugarColumn(IsNullable = true)]
public long? teach { get; set; }
///
/// 声望
///
[SugarColumn(IsNullable = true)]
public long? renown { get; set; }
///
/// 罪恶值
///
[SugarColumn(IsNullable = true)]
public long? enemy { get; set; }
///
/// 魅力
///
[SugarColumn(IsNullable = true)]
public long? charm { get; set; }
}
}