using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons { public class PersonalGoalInfoReqDto { public int PageIndex { get; set; } = 1; public int PageSize { get; set; } = 31; public int UserId { get; set; } public string Month { get; set; } } }