using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.DB.Models; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { [SugarTable("Dt_CustomIPaddress", "自定义ip地址"), MultiTenant] public class Dt_CustomIPaddress:BaseEntity { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "IP地址")] public string IPaddress { get; set; } [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "自定义ip地址的中文名字")] public string Addressname { get; set; } } }