using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain.FireManagement
{
///
/// 打卡信息
///
[SugarTable("fm_checkinpoint")]
public class FmCheckInPoint
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public long Id { get; set; }
///
/// 打卡点经度
///
public string Lng { get; set; }
///
/// 打卡点维度
///
public string Lat { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 打卡点名称
///
public string PointName { get; set; }
///
/// 是否删除
///
public bool? IsDelete { get; set; }
///
/// 创建人
///
public long CreateId { get; set; }
}
}