using SqlSugar; using System; using System.Linq; using System.Text; namespace Txgy.RBS.DbModel.Models { /// /// /// public class redis_server { public redis_server() { } /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(IsPrimaryKey = true,IsIdentity =true)] public int id { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string name { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string url { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int port { get; set; } } }