namespace yunneiPda.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("userVsRole")] public partial class userVsRole { public int id { get; set; } public int? userId { get; set; } public int? role { get; set; } public DateTime? creatDate { get; set; } } }