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.
31 lines
820 B
31 lines
820 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class ICSRdRecord01
|
|
{
|
|
public string ID;//表头ID
|
|
public string RCVTCode;//入库单号
|
|
public string User;//操作人
|
|
public DateTime MTime;//操作时间
|
|
public string VenCode;//供应商编号
|
|
public string WHCode;//仓库编号
|
|
public string DNCode;//到货单编号
|
|
public List<ICSRdRecord01s> Record01s = new List<ICSRdRecord01s>();
|
|
}
|
|
public class ICSRdRecord01s
|
|
{
|
|
public string Sequence;
|
|
public string InvCode;
|
|
public decimal Quantity;
|
|
public decimal Amount;
|
|
public string Currency;
|
|
public decimal UnitPrice;
|
|
public string DNDetailID;
|
|
}
|
|
|
|
|
|
}
|