namespace iWareSql.DBModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("ExceptionInfo")] public partial class ExceptionInfo { public int Id { get; set; } [StringLength(255)] public string key1 { get; set; } [StringLength(255)] public string key2 { get; set; } [StringLength(255)] public string exceptionLevel { get; set; } [StringLength(255)] public string exceptionSource { get; set; } [StringLength(255)] public string exceptionFun { get; set; } [StringLength(255)] public string sourceData { get; set; } [StringLength(255)] public string exceptionMsg { get; set; } [StringLength(255)] public string exceptionData { get; set; } [StringLength(255)] public string host { get; set; } [StringLength(255)] public string creator { get; set; } } }