using System;
using System.Collections.Generic;
namespace NCC.Education.Entitys.Dto.TbReadLog
{
///
/// 阅读数修改输入参数
///
public class TbReadLogCrInput
{
///
/// 打卡资讯ID
///
public string punchInfoId { get; set; }
///
/// 用户ID
///
public string userId { get; set; }
///
/// 创建时间
///
public DateTime? creatorTime { get; set; }
///
/// 修改时间
///
public DateTime? lastModifyTime { get; set; }
}
}