using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BackupAndImport.Entitys.悠哉 { /// /// /// [SugarTable("member")] public partial class member { public member() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int uid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string wxid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string nickname { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string username { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? usertype { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? integral { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? qdcount { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string qdlastdt { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string mmpid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string pidname { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? trjid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? groupid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string groupwxid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string groupname { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public double? balance { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string alipayrealname { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string alipaynum { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string regtime { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string order_sixbit { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string jdpid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string pddpid { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string pdd_order_lastbit { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? isblacklist { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? isadmin { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? isync { get; set; } } //public class member //{ // public long uid { get; set; } // public string wxid { get; set; } // public string nickname { get; set; } // public string username { get; set; } // public int usertype { get; set; } // public int integral { get; set; } // public int qdcount { get; set; } // public string qdlastdt { get; set; } // public string mmpid { get; set; } // public string pidname { get; set; } // public int trjid { get; set; } // public int groupid { get; set; } // public string groupwxid { get; set; } // public string groupname { get; set; } // public double balance { get; set; } // public string alipayrealname { get; set; } // public string alipaynum { get; set; } // public string regtime { get; set; } // public string order_sixbit { get; set; } // public string jdpid { get; set; } // public string pddpid { get; set; } // public string pdd_order_lastbit { get; set; } // public int isblacklist { get; set; } // public int isadmin { get; set; } // public int isync { get; set; } //} }