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