using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// ///巡查统计 /// [SugarTable("fm_usertimeslotdistance")] public partial class FmUsertimeslotdistance { public FmUsertimeslotdistance(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public long Id {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? CreateTime {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// public long? CreateId {get;set;} /// /// Desc:时间段 /// Default: /// Nullable:True /// public string TimeSlot {get;set;} /// /// Desc:长度 /// Default: /// Nullable:True /// public double? Distance {get;set;} /// /// Desc:次数 /// Default: /// Nullable:True /// public int? Times {get;set;} /// /// Desc:开始时间 /// Default: /// Nullable:True /// public DateTime? StartTime {get;set;} /// /// Desc:结束时间 /// Default: /// Nullable:True /// public DateTime? EndTime {get;set;} /// /// Desc:有效率 /// Default: /// Nullable:True /// public double? EffectiveRate {get;set;} /// /// Desc:巡查时长分钟 /// Default: /// Nullable:True /// public int? Duration {get;set;} } }