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.
 
 

43 lines
1.1 KiB

namespace Znyc.CloudCar.Model.Dtos.Currency
{
public class CurrencyRecordListOutput
{
public string Month { get; set; }
public List<CurrencyRecordOutput> List { get; set; }
}
public class CurrencyRecordOutput
{
public string Title { get; set; }
public string ScoreDescription { get; set; }
public string ShortTime { get; set; }
/// <summary>
/// 操作类型
/// 1=增加/2=减少/99=冻结/
/// </summary>
public int OperatingType { get; set; }
/// <summary>
/// 云币来源类型
/// </summary>
public int CurrencyType { get; set; }
/// <summary>
/// 云币来源
/// </summary>
public long CurrencySoureObjectId { get; set; }
/// <summary>
/// 云币获取/消耗时间
/// </summary>
public DateTime CreatedTime { get; set; }
/// <summary>
/// 操作云币
/// </summary>
public decimal OperatingCurrency { get; set; }
}
}