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; }
}
}