using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 排行榜周榜
///
public partial class RankWeek
{
public uint Id { get; set; }
///
/// 用户ID
///
public uint UserId { get; set; }
///
/// 排名
///
public uint Rank { get; set; }
///
/// 消费金额
///
public decimal Money { get; set; }
///
/// 统计范围
///
public string WeekTime { get; set; } = null!;
///
/// 添加时间
///
public uint Addtime { get; set; }
///
/// 奖品ID
///
public uint OrderListId { get; set; }
public string? PrizeTitle { get; set; }
public string? PrizeImgurl { get; set; }
}