44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
|
|
/**********************
|
|||
|
|
* 类名:采购单明细Model
|
|||
|
|
* 作者:范兵远
|
|||
|
|
* 时间:2013-09-12
|
|||
|
|
**********************/
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace PosErp.Model.Purchase
|
|||
|
|
{
|
|||
|
|
public class PurchaseOrderDetailsModel
|
|||
|
|
{
|
|||
|
|
[DisplayName("主键ID")]
|
|||
|
|
public virtual string ID { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("采购单号")]
|
|||
|
|
public virtual string PurchaseID { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("商品编码")]
|
|||
|
|
public virtual string GoodsID { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("采购数量")]
|
|||
|
|
public virtual decimal PurchaseAmount { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("库存数量")]
|
|||
|
|
public virtual decimal StockAmount { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("采购进价")]
|
|||
|
|
public virtual decimal PurchaseBid { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("采购金额")]
|
|||
|
|
public virtual decimal PurchaseMoney { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("两周平均销售量")]
|
|||
|
|
public virtual decimal AverageSales { get; set; }
|
|||
|
|
|
|||
|
|
[DisplayName("供应商编码")]
|
|||
|
|
public virtual string ProviderID { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|