feat: initial commit - HJHA game server full source
6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) + game logic (GameFix/GameDAL/ServerData) + network layer (NetWorkMessage) + data layer (ObjectModel) + utilities (MrWu/Core/Config/CloudAPI/dll) + adapters (zyxAdapter/base) .NET 8.0 C# solution, 16 projects, 958 source files
This commit is contained in:
29
ObjectModel/Game/PromotersDBEntity.cs
Normal file
29
ObjectModel/Game/PromotersDBEntity.cs
Normal file
@ -0,0 +1,29 @@
|
||||
namespace ObjectModel.Game
|
||||
{
|
||||
/// <summary>
|
||||
/// 推广员表
|
||||
/// </summary>
|
||||
public class PromotersDBEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户Id
|
||||
/// </summary>
|
||||
public int UserId { get; set; }
|
||||
/// <summary>
|
||||
/// 总线下用户
|
||||
/// </summary>
|
||||
public int TotalUser { get; set; }
|
||||
/// <summary>
|
||||
/// 总钻石的消费金额
|
||||
/// </summary>
|
||||
public decimal TotalCost { get; set; }
|
||||
/// <summary>
|
||||
/// 总佣金 (红包)
|
||||
/// </summary>
|
||||
public decimal TotalCommission { get; set; }
|
||||
/// <summary>
|
||||
/// 推广等级
|
||||
/// </summary>
|
||||
public int Level { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user