namespace ZR.Model.Business
{
///
/// 签到记录
///
[SugarTable("odf_checkin")]
public class OdfCheckin
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 关联机房ID
///
public int RoomId { get; set; }
///
/// 签到人员
///
public string Personnel { get; set; }
///
/// 签到时间
///
public DateTime CheckinTime { get; set; }
///
/// 工作内容
///
public string WorkContent { get; set; }
///
/// 提交人用户ID
///
public long? UserId { get; set; }
///
/// 记录创建时间
///
public DateTime? CreatedAt { get; set; }
}
}