using System.Collections.Generic; namespace Tiger.Model { public class BaseInput { /// /// /// public AuthOption AuthOption { get; set; } /// /// 条码 /// public string SN { get; set; } /// /// 海关单号 /// public string CustomsNo { get; set; } } public class BasePageInput { public AuthOption AuthOption { get; set; } public int pageIndex { get; set; } public int pageSize { get; set; } public int total { get; set; } public string Code { get; set; } } public class BasePageOutput { public List data { get; set; } public int total { get; set; } } public class BaseCodeInput { public AuthOption AuthOption { get; set; } public string Code { get; set; } } public class OutOthDtlInput : BasePageInput { public bool IsItemCodeList { get; set; } } public class OutWoDtlInput : BasePageInput { public bool IsItemCodeList { get; set; } } public class ScanShelfInfo { public string WarehouseCode { get; set; } public string RegionCode { get; set; } public string ShelfCode { get; set; } public string LocationCode { get; set; } public string RackCode => ShelfCode; public bool IsSmartRack { get; set; } public decimal Capacity { get; set; } public int LotCount { get; set; } public decimal MaxSize { get; set; } public int ShelfType { get; set; } public bool IsScanShelf { get; set; } public WMS_SHELF Shelf { get; set; } public WMS_LOCATION Location { get; set; } } }