BaoKai_202508-Wms-Jingwang..../WMS.Model/ERP/外采采购单明细表PurchaseOrderDetailsModel.cs
2025-08-24 09:35:55 +08:00

44 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**********************
* 类名采购单明细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; }
}
}