using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class IpInfo { private int id; //编号 public int Id { get { return id; } set { id = value; } } private decimal startIp; //起始ip段 public decimal StartIp { get { return startIp; } set { startIp = value; } } private decimal endIp; //结束ip段 public decimal EndIp { get { return endIp; } set { endIp = value; } } private string country; //地址-省份 public string Country { get { return country; } set { country = value; } } private string city; //备注 public string City { get { return city; } set { city = value; } } } }