namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("BASEPlaceTypeView")] public partial class BASEPlaceTypeView { [Key] [Column(Order = 0)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int id { get; set; } [Key] [Column(Order = 1)] [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; } [Key] [Column(Order = 2)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int reflabel { get; set; } } }