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