using SqlSugar; using System; using System.Linq; using System.Text; namespace OpenAuth.Repository.Domain { /// ///盗采点信息表 /// [SugarTable("mi_mine_point")] public partial class MiMinePoint { public MiMinePoint(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Id {get;set;} /// /// Desc:监管点名称 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc:县区编码 /// Default: /// Nullable:True /// public string CountyId {get;set;} /// /// Desc:县区名称 /// Default: /// Nullable:True /// public string CountyName {get;set;} /// /// Desc:街镇编码 /// Default: /// Nullable:True /// public string StreetId {get;set;} /// /// Desc:街镇名称 /// Default: /// Nullable:True /// public string StreetName {get;set;} /// /// Desc:村编码 /// Default: /// Nullable:True /// public string CommunityId {get;set;} /// /// Desc:村名 /// Default: /// Nullable:True /// public string CommunityName {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 bool? IsDelete {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? CreateTime {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// public string CreateUserId {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// geom /// public string geom { get; set; } /// /// Desc:是否关闭 /// Default:false /// Nullable:False /// public bool IsClose { get; set; } } }