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 Wdgj_SaleOrderList
|
{
|
[Key]
|
public long OrderRelationList_Id { get; set; }
|
|
public long OrderRelation_Id { get; set; }
|
|
public long OrderList_Id { get; set; }
|
|
public long Order_Id { get; set; }
|
|
public long? TradeID { get; set; }
|
|
public int? GoodsID { get; set; }
|
|
public int? SpecID { get; set; }
|
|
public int? SellCount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? SellPrice { get; set; }
|
|
public byte? bGift { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? Score { get; set; }
|
|
[StringLength(50)]
|
public string OriginalNO { get; set; }
|
|
public int? RecID { get; set; }
|
|
[StringLength(50)]
|
public string Unit { get; set; }
|
|
[StringLength(50)]
|
public string ShopName { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? GoodsCost { get; set; }
|
|
public int? BackCount { get; set; }
|
|
[StringLength(50)]
|
public string GiftType { get; set; }
|
|
[StringLength(50)]
|
public string GiftActivStep { get; set; }
|
|
public byte? bFit { get; set; }
|
|
[StringLength(50)]
|
public string TradeName { get; set; }
|
|
[StringLength(50)]
|
public string TradeSpec { get; set; }
|
|
[StringLength(50)]
|
public string TradeGoodsNO { get; set; }
|
|
public DateTime? SayHelloDate { get; set; }
|
|
public byte? bSayHello { get; set; }
|
|
public int? PickCount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? SellTotal { get; set; }
|
|
public int? ProduceID { get; set; }
|
|
public int? PositionsID { 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 Wdgj_SaleOrder Wdgj_SaleOrder { get; set; }
|
}
|
}
|