using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// ///向导人员信息表 /// [SugarTable("fm_xiangdaouser")] public partial class FmXiangdaouser { public FmXiangdaouser(){ } /// /// Desc: /// Default: /// Nullable:False /// public int gid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string username {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string sex {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string card {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string phone {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string area {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 string protectarea {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string east {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string west {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string south {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string north {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string mask {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string street {get;set;} } }