TbPunchCrInput.cs 1.25 KB
using System;
using System.Collections.Generic;
using NCC.Common.Model;

namespace NCC.Education.Entitys.Dto.TbPunch
{
    /// <summary>
    /// 打卡记录修改输入参数
    /// </summary>
    public class TbPunchCrInput
    {
        /// <summary>
        /// 用户ID
        /// </summary>
        public string userId { get; set; }
        
        /// <summary>
        /// 练习日期
        /// </summary>
        public DateTime? exerciseDate { get; set; }
        
        /// <summary>
        /// 编号
        /// </summary>
        public string code { get; set; }
        
        /// <summary>
        /// 做题总时长
        /// </summary>
        public DateTime? totalTime { get; set; }
        
        /// <summary>
        /// 图片信息
        /// </summary>
        public List<FileControlsModel> imgList { get; set; }
        
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? creatorTime { get; set; }
        
        /// <summary>
        /// 修改时间
        /// </summary>
        public DateTime? lastModifyTime { get; set; }
        
        /// <summary>
        /// 状态  1--已打卡  2--缺卡
        /// </summary>
        public string type { get; set; }
        
    }
}