using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.Repository.Domain.FireManagement { [SplitTable(SplitType.Month)] [SugarTable("fm_userpointhistory_{year}{month}{day}")] public class FmUserPointHistory { /// /// Id /// [SugarColumn(IsPrimaryKey = true)] public long Id { get; set; } /// /// CreateTime /// [SplitField] public DateTime CreateTime { get; set; } /// /// Lng /// public string Lng { get; set; } /// /// Lat /// public string Lat { get; set; } /// /// CreateId /// public long CreateId { get; set; } /// /// 是否在巡查范围之内0-不是 1-是 /// public int Intype { get; set; } /// /// 和上一坐标点的距离 /// public double Distance { get; set; } } }