using SqlSugar; using System; using System.Linq; using System.Text; namespace OpenAuth.Repository.Domain { /// ///盗采点打卡信息表 /// [SugarTable("mi_punch_record")] public partial class MiPunchRecord { public MiPunchRecord(){ } /// /// Desc:打卡记录ID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Id {get;set;} /// /// Desc:userid /// Default: /// Nullable:False /// public long UserId {get;set;} /// /// Desc:打卡时间 /// Default:DateTime.Now /// Nullable:True /// public DateTime? PunchTime {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc:盗采点id /// Default: /// Nullable:True /// public string MinePointId {get;set;} /// /// Desc:打卡点状态:正常、异常、违法 /// Default:'正常'::character varying /// Nullable:True /// public short? PunchStatus {get;set;} /// /// Desc:经度 /// Default: /// Nullable:True /// public decimal? Lng {get;set;} /// /// Desc:纬度 /// Default: /// Nullable:True /// public decimal? Lat {get;set;} } }