using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiger.Model { public class CustSupplyCheckingInput: BaseInput { public string WarehouseCode { get; set; } /// /// 二级供应商代码 /// public string SecondSuppCode { get; set; } public string LotNo { get; set; } } public class CustSupplyInInput { public AuthOption AuthOption { get; set; } public string SN { get; set; } } }