namespace iWareSql.MyDbContext { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class ware_equipment { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } public long? EquipmentTypeId { get; set; } [StringLength(150)] public string EquipmentName { get; set; } [StringLength(200)] public string ExhibitionName { get; set; } [StringLength(150)] public string EquipmentBrand { get; set; } [StringLength(30)] public string IP { get; set; } public int? port { get; set; } [StringLength(100)] public string RegionId { get; set; } [StringLength(200)] public string EquipmentIdentification { get; set; } public int? Status { get; set; } public long? TenantId { get; set; } public DateTimeOffset? CreatedTime { get; set; } public DateTimeOffset? UpdatedTime { get; set; } public long? CreatedUserId { get; set; } [StringLength(20)] public string CreatedUserName { get; set; } public long? UpdatedUserId { get; set; } [StringLength(20)] public string UpdatedUserName { get; set; } public bool? IsDeleted { get; set; } [StringLength(500)] public string Remarks { get; set; } } }