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 MoYun_Sale_Order_TranList { [Key] public long TranList_Id { get; set; } public long Tran_Id { get; set; } public long Product_Id { get; set; } [Required] [StringLength(50)] public string ProductCode { get; set; } [Required] [StringLength(500)] public string ProductName { get; set; } [Required] [StringLength(500)] public string ProductType { get; set; } public int? QuantityOrder { get; set; } [Column(TypeName = "money")] public decimal? SalePrice { get; set; } public decimal? Weight { get; set; } [StringLength(50)] public string SmallUnit { get; set; } public string Remark { 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 MoYun_Sale_Order_Tran MoYun_Sale_Order_Tran { get; set; } } }