111
This commit is contained in:
39
Service/Application.Domain.Entity/game/user/unit_user_acc.cs
Normal file
39
Service/Application.Domain.Entity/game/user/unit_user_acc.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace Application.Domain.Entity
|
||||
{
|
||||
[Tenant("Kg.SeaTime.Game")]
|
||||
public class unit_user_acc
|
||||
{
|
||||
/// <summary>
|
||||
/// userId
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
||||
public string userId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 海贝
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? cowry { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 金
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? gold { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 师德
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? teach { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 声望
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? renown { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user