using Hotline.Share.Tools;
namespace Hotline.Share.Dtos.Snapshot;
public class SnapshotUserInfoOutDto
{
///
/// 电话号码
///
public string PhoneNumber { get; set; }
///
/// 电话号码脱敏
///
public string PhoneNumberMask => PhoneNumber.MaskPhoneNumber();
///
/// 当日奖励(单位:元)
///
public double DayAmount { get; set; }
///
/// 当日奖励(单位:元)
///
public string DayAmountTxt => DayAmount.ToYuanFinance();
///
/// 总奖励(单位:元)
///
public double TotalAmount { get; set; }
///
/// 总奖励(单位:元)
///
public string TotalAmountTxt => TotalAmount.ToYuanFinance();
///
/// 未回复数量
///
public int NoReplyCount { get; set; }
///
/// 已回复数量
///
public int ReplyCount { get; set; }
///
/// 已评论
///
public int AppraiseCount { get; set; }
}