BaoKai_202508_Wms_Jingwang_.../WMS.Model/ERP/外采采购单主表PurchaseOrderModel.cs
2025-08-24 21:52:42 +08:00

140 lines
3.6 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-11
**********************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace PosErp.Model.Purchase
{
/// <summary>
/// 采购单信息Model
/// </summary>
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; }
/// <summary>
/// 接口时 获取流水单号时用到
/// </summary>
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
/// <summary>
/// 供应商名称
/// </summary>
public string ProviderName { get; set; }
/// <summary>
/// 仓库名称
/// </summary>
public string DepotName { get; set; }
/// <summary>
/// 采购人名称
/// </summary>
public string PurchaseManName { get; set; }
/// <summary>
/// 创建人名称
/// </summary>
public string CreateManName { get; set; }
/// <summary>
/// 审核人名称
/// </summary>
public string AuditingManName { get; set; }
}
}