using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_acc
{
///
/// userId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
///
/// 海贝
///
[SugarColumn(IsNullable = true)]
public long? cowry { get; set; }
///
/// 金
///
[SugarColumn(IsNullable = true)]
public long? gold { get; set; }
///
/// 师德
///
[SugarColumn(IsNullable = true)]
public long? teach { get; set; }
///
/// 声望
///
[SugarColumn(IsNullable = true)]
public long? renown { get; set; }
}
}