using SqlSugar; namespace BackupAndImport.Entitys.速推客 { /// /// /// [SugarTable("代理管理")] public partial class 代理管理 { public 代理管理() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string 上级ID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string 上级名称 { get; set; } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string 下级ID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string 下级名称 { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string 绑定时间 { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string 来源 { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string 类型 { get; set; } } //public class 代理管理 //{ // public string 上级ID { get; set; } // public string 上级名称 { get; set; } // public string 下级ID { get; set; } // public string 下级名称 { get; set; } // public string 绑定时间 { get; set; } // //public string 来源 { get; set; } // //public string 类型 { get; set; } //} }