YD_SmartSports.Api/VOL.Model/Training/Request/UserTrainingDataQueryParam.cs
2025-06-06 16:55:14 +08:00

39 lines
891 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.ComponentModel.DataAnnotations;
using VOL.Entity.Enum;
using VOL.Model;
namespace VOL.Model
{
/// <summary>
/// 用户训练数据查询参数
/// </summary>
public class UserTrainingDataQueryParam : PageDto
{
/// <summary>
/// 用户ID必填
/// </summary>
[Required]
public int UserId { get; set; }
/// <summary>
/// 训练类型(个人/团队)
/// </summary>
public int? TrainingType { get; set; }
/// <summary>
/// 训练模式
/// </summary>
public int? ModeType { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime? EndTime { get; set; }
}
}