using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 云币记录表
///
[Table("rm_currency_record")]
public class CurrencyRecordEntity : BaseEntity
{
///
/// 用户id
///
public long UserId { get; set; }
///
/// 操作云币
///
public int OperatingCurrency { get; set; }
///
/// 操作类型
///
public int OperatingType { get; set; }
///
/// 云币类型
///
public int CurrencyType { get; set; }
///
/// 云币来源Id(12=求职ID)/(12=招聘ID)
///
public long CurrencySoureObjectId { get; set; }
}
}