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_adapter_record { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } public long AdapterCategoryId { get; set; } [Required] [StringLength(255)] public string CategoryName { get; set; } [Required] [StringLength(255)] public string AdapterName { get; set; } public long AdapterId { get; set; } [Required] [StringLength(255)] public string AdapterMethodName { get; set; } [Required] [StringLength(50)] public string RequestSoure { get; set; } [Required] [StringLength(255)] public string AdapterSID { get; set; } [StringLength(255)] public string KeyCode { get; set; } public DateTime? BeginTime { get; set; } public DateTime? EndingTime { get; set; } public int? TimeDifference { get; set; } public int DealWithStatus { get; set; } [Required] public string ErrMessage { get; set; } [Required] public string AdapterInput { get; set; } [Required] public string AdapterReturnMassage { get; set; } [Required] [StringLength(255)] public string OrderNo { get; set; } public int? PushCount { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public long? CreateUserId { get; set; } [StringLength(64)] public string CreateUserName { get; set; } public long? UpdateUserId { get; set; } [StringLength(64)] public string UpdateUserName { get; set; } public bool IsDelete { get; set; } } }