using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.ClientSide
{
///
/// 获取打卡记录
///
public class CetCheckInRecordDto
{
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
}
///
/// 获取打卡记录
///
public class CheckInRecordDto
{
///
/// 日期
///
public int Day { get; set; }
///
/// 目标数量
///
public int GoalAmount { get; set; }
///
/// 完成数量
///
public int CompletedCount { get; set; }
}
}