39 lines
878 B
C#
39 lines
878 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 目标时长
|
|
/// </summary>
|
|
public int GoalDuration { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标数量
|
|
/// </summary>
|
|
public int GoalAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标日期
|
|
/// </summary>
|
|
public DateTime GoalDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 作业数量
|
|
/// </summary>
|
|
public int Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否完成
|
|
/// </summary>
|
|
public bool IsFinish { get; set; }
|
|
}
|
|
}
|