using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.FireManagement.Response { public class CheckPointInfo { /// /// 主键 /// [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 string usernames { get; set; } /// /// 打卡点人员xinxi /// public string userinfo { get; set; } public string userid { get; set; } public DateTime? lasttime { get; set; } } }