CloudGamingAdmin/admin-server/CloudGaming.Repository.Game/Entities/App/T_RewardConfig.cs
2024-11-19 20:20:58 +08:00

36 lines
889 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace CloudGaming.Repository.Game.Entities.App;
/// <summary>
/// 通用奖励配置表
/// </summary>
[Table("T_RewardConfig")]
[EntityDescription(NameRuleMode = NameRuleMode.TableName, NameRuleType= NameRuleType.UpperSnakeCase)]
public class T_RewardConfig : DefaultGameAppEntity
{
/// <summary>
/// 奖励类型 => 备注: 奖励类型
/// </summary>
public Int32 CurrencyType { get; set; }
/// <summary>
/// 奖励数量 => 备注: 奖励数量
/// </summary>
public Int32 AwardNum { get; set; }
/// <summary>
/// 奖励类型1兑换码奖励 => 备注: 奖励类型1兑换码奖励
/// </summary>
public Int32 ParentNodeType { get; set; }
/// <summary>
/// 对应主键的id => 备注: 对应主键的id
/// </summary>
public Int32 ParentNodeId { get; set; }
}