44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.Repository.Domain.FireManagement
|
|
{
|
|
/// <summary>
|
|
/// 打卡信息
|
|
/// </summary>
|
|
[SugarTable("fm_checkclockon")]
|
|
public class FmCheckClockOn
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 打卡时间
|
|
/// </summary>
|
|
public DateTime ClockonTime { get; set; }
|
|
/// <summary>
|
|
/// 打卡人员id
|
|
/// </summary>
|
|
public long UserId { get; set; }
|
|
/// <summary>
|
|
/// 打卡点id
|
|
/// </summary>
|
|
public long PointId { get; set; }
|
|
/// <summary>
|
|
/// 打卡位置经度
|
|
/// </summary>
|
|
public string Lng { get; set; }
|
|
/// <summary>
|
|
/// 打卡位置维度
|
|
/// </summary>
|
|
public string Lat { get; set; }
|
|
|
|
}
|
|
}
|