/**********************
* 类名:采购单信息Model
* 作者:范兵远
* 时间:2013-09-11
**********************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace PosErp.Model.Purchase
{
///
/// 采购单信息Model
///
public class PurchaseOrderModel
{
[DisplayName("自增主键")]
public string ID { get; set; }
[DisplayName("采购单号")]
public string PurchaseID { get; set; }
[DisplayName("Wms端生成的单号")]
public string WmsOrderID { get; set; }
[DisplayName("采购类型 ")]
public string PurchaseType { get; set; }
[DisplayName("采购日期")]
public DateTime PurchaseDate { get; set; }
[DisplayName("送货地址(仓库)")]
public string ReceiveDepotID { get; set; }
[DisplayName("采购人员编号")]
public string PurchaseManID { get; set; }
[DisplayName("定金金额")]
public decimal FrontMoney { get; set; }
[DisplayName("剩余定金")]
public decimal RemainFront { get; set; }
[DisplayName("采购金额")]
public decimal PurchaseMoney { get; set; }
[DisplayName("采购状态")]
public string PurchaseStatus { get; set; }
[DisplayName("采购单状态值")]
public string StatusValue { get; set; }
[DisplayName("供应商编码")]
public string ProviderID { get; set; }
[DisplayName("制单人")]
public string CreateManID { get; set; }
[DisplayName("制单日期")]
public DateTime CreateDate { get; set; }
[DisplayName("审核人")]
public string AuditingManID { get; set; }
[DisplayName("审核日期")]
public DateTime AuditingDate { get; set; }
[DisplayName("最后更新人")]
public string UpdateManID { get; set; }
[DisplayName("最后更新日期")]
public DateTime UpdateDate { get; set; }
[DisplayName("删除日期")]
public DateTime DeleteDate { get; set; }
[DisplayName("删除状态")]
public int DeleteStatus { get; set; }
[DisplayName("删除人编号")]
public string DeleteManID { get; set; }
[DisplayName("预计到货日期")]
public DateTime ExpectedDeliveryDate { get; set; }
///
/// 接口时 获取流水单号时用到
///
public string DepID { get; set; }
#region 查询用字段
//商品编号
public string GoodsID
{
get;
set;
}
//商品类别
public string GoodsTypeID
{
get;
set;
}
//下单开始时间
public DateTime StartDate
{
get;
set;
}
//下单结束时间
public DateTime EndDate
{
get;
set;
}
#endregion
///
/// 供应商名称
///
public string ProviderName { get; set; }
///
/// 仓库名称
///
public string DepotName { get; set; }
///
/// 采购人名称
///
public string PurchaseManName { get; set; }
///
/// 创建人名称
///
public string CreateManName { get; set; }
///
/// 审核人名称
///
public string AuditingManName { get; set; }
}
}