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