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 Cnec_jh_OrderList { [Key] public long CnecorderList_Id { get; set; } public long Cnecorder_Id { get; set; } public long Order_Id { get; set; } public long? OrderList_Id { get; set; } [StringLength(20)] public string ProductId { get; set; } [StringLength(200)] public string GoodsName { get; set; } public decimal? Qty { get; set; } [StringLength(20)] public string Unit { get; set; } public decimal? Price { get; set; } public decimal? Amount { get; set; } public decimal? ProAmount { get; set; } [StringLength(1000)] public string ProRemark { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public string ExpandFields { get; set; } public virtual Cnec_jh_Order Cnec_jh_Order { get; set; } } }