using System; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 云币列表Dto /// [Serializable] public class CurrencyRecordOutputDto { /// /// 积分Id /// public long Id { get; set; } /// /// 用户Id /// public long UserId { get; set; } /// /// 用户Id /// public string UserName { get; set; } /// /// 用户头像 /// public string AvatarUrl { get; set; } /// /// 用户手机号 /// public string Phone { get; set; } /// /// 收支类型 /// public int OperatingType { get; set; } /// /// 收支类型 /// public string OperatingTypeName { get; set; } /// /// 云币数量 /// public decimal OperatingCurrency { get; set; } /// /// 收支途径 /// public int CurrencyType { get; set; } /// /// 收支途径 /// public string CurrencyTypeName { get; set; } /// /// 收支时间 /// public DateTime CreatedTime { get; set; } /// /// 云币来源(求职/招聘/用户Id) /// public long CurrencySoureObjectId { get; set; } } }