using System; using System.Collections.Generic; using NCC.Common.Model; namespace NCC.Education.Entitys.Dto.TbPunch { /// /// 打卡记录输出参数 /// public class TbPunchInfoOutput { /// /// 主键 /// public string id { get; set; } /// /// 用户ID /// public string userId { get; set; } /// /// 练习日期 /// public DateTime? exerciseDate { get; set; } /// /// 编号 /// public string code { get; set; } /// /// 做题总时长 /// public DateTime? totalTime { get; set; } /// /// 图片信息 /// public List imgList { get; set; } /// /// 创建时间 /// public DateTime? creatorTime { get; set; } /// /// 修改时间 /// public DateTime? lastModifyTime { get; set; } /// /// 状态 1--已打卡 2--缺卡 /// public string type { get; set; } } }