YD_SmartSports.Api/VOL.Model/Norm/Request/ActivitiesStatisticsDetailsParam.cs
2025-06-06 16:00:39 +08:00

25 lines
546 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.Enum;
namespace VOL.Model
{
/// <summary>
/// 活动排行详情
/// </summary>
public class ActivitiesStatisticsDetailsParam
{
/// <summary>
/// 活动ID
/// </summary>
public int ActivitiesId { get; set; }
/// <summary>
/// 状态(1=已完成2=未完成)
/// </summary>
public int ScoreStatus { get; set; } = 1;
}
}