using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 用户云币表 /// [Table("rm_currency")] public class CurrencyEntity : BaseEntity { /// /// 用户Id /// public long UserId { get; set; } /// /// 可用云币 /// public int AvailableCredits { get; set; } /// /// 正式云币 /// public int OfficialCredits { get; set; } /// /// 临时云币 /// public int TemporarylCredits { get; set; } } }