namespace iWareSql.WmsDBModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class wms_record_device_warning { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [StringLength(100)] public string WarningCode { get; set; } [StringLength(100)] public string WarningContent { get; set; } public int DeviceWarningType { get; set; } public int DeviceAreaCode { get; set; } public int DeviceWarningStatus { get; set; } public DateTime WarningTime { get; set; } public DateTime? FinishTime { get; set; } [StringLength(50)] public string DurationTime { get; set; } public DateTime? CreateTime { get; set; } public long? CreateUserId { get; set; } [StringLength(64)] public string CreateUserName { get; set; } } }