namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class vRequire_GoodsList { [Key] [Column(Order = 0)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int Goods_Id { get; set; } [StringLength(50)] public string GoodsCode { get; set; } public int? Storage_Id { get; set; } [StringLength(50)] public string StorageName { get; set; } [StringLength(50)] public string GoodsText { get; set; } public DateTime? PlaceOrderDate { get; set; } public int? PlatUser_Id { get; set; } public int? UserProduct_Id { get; set; } public long? Product_Id { get; set; } [StringLength(50)] public string ProductCode { get; set; } [StringLength(500)] public string ProductName { get; set; } [StringLength(300)] public string ProductModel { get; set; } public string ProductSpec { get; set; } public int? GoodsQuantity { get; set; } [Column(TypeName = "money")] public decimal? ProductPrice { get; set; } [Column(TypeName = "money")] public decimal? ProductTotal { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } [Key] [Column(Order = 1)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int GoodsList_Id { get; set; } } }