using System; using System.Collections.Generic; namespace NCC.Education.Entitys.Dto.TbBothSetting { /// /// 连续打卡设定修改输入参数 /// public class TbBothSettingCrInput { /// /// 连续天数 /// public int? bothNumber { get; set; } /// /// 赠送积分数 /// public int? num { get; set; } /// /// 创建时间 /// public DateTime? creatorTime { get; set; } /// /// 修改时间 /// public DateTime? lastModifyTime { get; set; } } }