using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
public class iReceiptParam
|
{
|
public string DeliveryNo { get; set; }
|
public string StrongHoid { get; set; }
|
}
|
|
public class iReceiptInfo
|
{
|
public string lineNumber { get; set; }
|
public string BillCode { get; set; }
|
public string SupplierCode { get; set; }
|
public string ItemNumber { get; set; }
|
public string SeqNumber { get; set; }
|
public string BatchOrder { get; set; }
|
public string ItemCode { get; set; }
|
public string Qty { get; set; }
|
}
|
}
|