You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
804 B
32 lines
804 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class ICSPurchaseOrder
|
|
{
|
|
public string POCode;//采购单号
|
|
public string User;//操作人
|
|
public DateTime MTime;//操作时间
|
|
public string VenCode;
|
|
public string DepCode;
|
|
public string PRCode;
|
|
public string ID;
|
|
public List<ICSPurchaseOrders> details = new List<ICSPurchaseOrders>();
|
|
}
|
|
public class ICSPurchaseOrders
|
|
{
|
|
public string Sequence;
|
|
public string InvCode;
|
|
public decimal Quantity;
|
|
public decimal Amount;
|
|
public DateTime ArriveDate;
|
|
public string Currency;
|
|
public decimal UnitPrice;
|
|
public string PRDetailID;
|
|
}
|
|
|
|
|
|
}
|