namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("BASEPlaceType")] public partial class BASEPlaceType { public int id { get; set; } [Required] [StringLength(50)] public string name { get; set; } [StringLength(100)] public string remark { get; set; } [StringLength(50)] public string ip { get; set; } [StringLength(50)] public string point { get; set; } } }