You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
790 B
32 lines
790 B
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 用户云币表
|
|
/// </summary>
|
|
[Table("rm_currency")]
|
|
public class CurrencyEntity : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
public long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 可用云币
|
|
/// </summary>
|
|
public int AvailableCredits { get; set; }
|
|
|
|
/// <summary>
|
|
/// 正式云币
|
|
/// </summary>
|
|
public int OfficialCredits { get; set; }
|
|
|
|
/// <summary>
|
|
/// 临时云币
|
|
/// </summary>
|
|
public int TemporarylCredits { get; set; }
|
|
}
|
|
}
|