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; }
|
/// <summary>
|
/// 二级供应商代码
|
/// </summary>
|
public string SecondSuppCode { get; set; }
|
|
public string LotNo { get; set; }
|
}
|
|
public class CustSupplyInInput
|
{
|
public AuthOption AuthOption { get; set; }
|
public string SN { get; set; }
|
}
|
}
|