using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons { public class PersonalGoalInfoDto { /// /// 目标时长 /// public int GoalDuration { get; set; } /// /// 目标数量 /// public int GoalAmount { get; set; } /// /// 目标日期 /// public DateTime GoalDate { get; set; } /// /// 作业数量 /// public int Amount { get; set; } /// /// 是否完成 /// public bool IsFinish { get; set; } } }