namespace iWareSql.WmsDBModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("SysJobCluster")] public partial class SysJobCluster { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(64)] public string ClusterId { get; set; } [StringLength(128)] public string Description { get; set; } public int Status { get; set; } public DateTime? UpdatedTime { get; set; } } }