using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using Tiger.Model.Minsun; namespace Tiger.Model { public class GetOutOtherDetailsInput { public string BillCode { get; set; } public string Barcode { get; set; } public string Material { get; set; } public string WarehouseCode { get; set; } public string RackCode { get; set; } public string LocationCode { get; set; } public string LedAddr { get; set; } public string BizType { get; set; } public List OffLocations { get; set; } public List OffRacks { get; set; } public List SuggestBarcodes { get; set; } public double PickQty { get; set; } public string Qrcode { get; set; } } public class GetOutOtherDetailsOutput { public string BillCode { get; set; } public int BillLine { get; set; } public string MaterialCode { get; set; } public string MaterialName { get; set; } public string MaterialStandard { get; set; } public string UnitCode { get; set; } public double PRQty { get; set; } public double Qty { get; set; } public DateTime? DeliveryDate { get; set; } public string WarehouseCode { get; set; } public string WarehouseName { get; set; } public string Barcode { get; set; } } public class OutOtherInput { public AuthOption AuthOption { get; set; } public string ReqNo { get; set; } public string isExceed { get; set; } } public class OutOtherOutput { public string ReqNo { get; set; } public bool isExceed { get; set; } public bool isCutting { get; set; } public string SN { get; set; } public string ItemCode { get; set; } public double Qty { get; set; } public double CutQty { get; set; } public string regionCode { get; set; } public string locationCode { get; set; } public string Status { get; set; } } public class OutOtherDtl { public string BillCode { get; set; } public DateTime BillDate { get; set; } public int BillLine { get; set; } public string ItemCode { get; set; } public string ItemName { get; set; } public string Status { get; set; } public List Items { get; set; } = new List(); } public class OutOtherDtlItem { public string WHCode { get; set; } public string LocationCode { get; set; } public string SN { get; set; } public double QTY { get; set; } } }