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.
36 lines
854 B
36 lines
854 B
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; }
|
|
}
|
|
}
|