using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model.Minsun
|
{
|
public class CustomerSupplyPuton
|
{
|
public string LocationCode { get; set; }
|
public string WarehouseCode { get; set; }
|
public string RackCode { get; set; }
|
public string RackType { get; set; }
|
public bool IsSmartRack { get; set; }
|
public double Capacity { get; set; }
|
public int LotCount { get; set; }
|
public double MaxSize { get; set; }
|
public int ShelfType { get; set; }
|
public bool IsScanShelf { get; set; }
|
}
|
public class InReceiptPuton
|
{
|
public string LocationCode { get; set; }
|
public string WarehouseCode { get; set; }
|
public string RackCode { get; set; }
|
public string RackType { get; set; }
|
public bool IsSmartRack { get; set; }
|
public double Capacity { get; set; }
|
public int LotCount { get; set; }
|
public double MaxSize { get; set; }
|
public int ShelfType { get; set; }
|
public bool IsScanShelf { get; set; }
|
}
|
|
public class OtherInstockBarcodeOutput
|
{
|
public string Barcode { get; set; }
|
public string ParentBoxBarcode { get; set; }
|
public string MaterialCode { get; set; }
|
public string MaterialName { get; set; }
|
public string MaterialStandard { get; set; }
|
public double InitialQty { get; set; }
|
public double CurrentQty { get; set; }
|
public string Unit { get; set; }
|
public DateTime DateCode { get; set; }
|
public DateTime? Period { get; set; }
|
public string LotNo { get; set; }
|
public string SourceBillCode { get; set; }
|
public int? SourceBillLine { get; set; }
|
public string StateFlag { get; set; }
|
|
public string LocationCode { get; set; }
|
public string WarehouseCode { get; set; }
|
|
public string IncompleteTips { get; set; }
|
public string ReceiptCode { get; set; }
|
public bool IsScanShelf { get; set; }
|
}
|
|
public class CustSupplyInOutput
|
{
|
public string result { get; set; }
|
}
|
|
public class CustSupplyIncompleteInput {
|
public string receiptNo { get; set; }
|
public string materialCode { get; set; }
|
}
|
}
|