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