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 v_stock_boardabc { public int? ABCClass { get; set; } [StringLength(50)] public string ABCClassName { get; set; } [Key] [Column(Order = 0)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Key] [Column(Order = 1)] [StringLength(50)] public string MaterialCode { get; set; } [Key] [Column(Order = 2)] [StringLength(50)] public string MaterialName { get; set; } [Key] [Column(Order = 3)] public decimal Quantity { 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; } [Key] [Column(Order = 4)] public bool IsDelete { get; set; } public DateTime? RecordInsertTime { get; set; } } }