20 lines
518 B
C#
20 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_WeChatApplet.Commons
|
|
{
|
|
public class UserTrainingRecordsReqDto
|
|
{
|
|
public int PageIndex { get; set; } = 1;
|
|
public int PageSize { get; set; } = 10;
|
|
public int UserId { get; set; }
|
|
public string Type { get; set; }
|
|
public string Mode { get; set; }
|
|
public string StartTime { get; set; }
|
|
public string EndTime { get; set; }
|
|
}
|
|
}
|