17 lines
388 B
C#
Raw Normal View History

2025-06-06 14:57:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons
{
public class PersonalGoalInfoReqDto
{
2025-07-17 13:10:49 +08:00
public int PageIndex { get; set; } = 1;
public int PageSize { get; set; } = 31;
2025-06-06 14:57:20 +08:00
public int UserId { get; set; }
2025-07-17 13:10:49 +08:00
public string Month { get; set; }
2025-06-06 14:57:20 +08:00
}
}