using FreeSql.DataAnnotations; namespace Znyc.CloudCar.Model.Entities { /// <summary> /// 云币记录表 /// </summary> [Table(Name = "currency_record")] public class CurrencyRecordEntity : EntityBase { /// <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> /// 云币来源 /// </summary> public long CurrencySoureObjectId { get; set; } } }