using SqlSugar; using System; using System.Linq; using System.Text; namespace OpenAuth.Repository.Domain { /// ///打卡图片表 /// [SugarTable("mi_punch_image")] public partial class MiPunchImage { public MiPunchImage(){ } /// /// Desc:图片ID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Id {get;set;} /// /// Desc:打卡id /// Default: /// Nullable:False /// public string PunchId {get;set;} /// /// Desc:图片 /// Default: /// Nullable:False /// public string Image {get;set;} /// /// Desc:经度 /// Default: /// Nullable:True /// public decimal? Lng {get;set;} /// /// Desc:纬度 /// Default: /// Nullable:True /// public decimal? Lat {get;set;} /// /// Desc:拍摄角度 /// Default: /// Nullable:True /// public decimal? Angle {get;set;} /// /// Desc:盗采点id /// Default: /// Nullable:True /// public string MinePointId {get;set;} /// /// Desc:创建时间 /// Default:DateTime.Now /// Nullable:True /// public DateTime? CreateTime {get;set;} } }