using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model.Minsun
|
{
|
public class CustSupplyCheckList
|
{
|
public string WarehouseCode { get; set; }
|
public string MaterialCode { get; set; }
|
public string MaterialName { get; set; }
|
public string MaterialStandard { get; set; }
|
public string Unit { get; set; }
|
public decimal InventoryQty { get; set; }
|
public DateTime? DateCode { get; set; }
|
public string DateCodeString { get; set; }
|
public string LotNo { get; set; }
|
}
|
|
public class CustSupplyCheckDetail
|
{
|
public string Barcode { get; set; }
|
public string Unit { get; set; }
|
public decimal BarcodeQty { get; set; }
|
}
|
|
public class InputCustSupplyCheck
|
{
|
public string SN { get; set; }
|
public string StrVenderCode { get; set; }
|
public string LotNo { get; set; }
|
}
|
}
|