using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.cp
{
public class SalesDocTransFeedBackRequest
{
///
/// 发货单号
///
public string BillCode { get; set; }
///
/// 箱号清单
///
public List BoxList { get; set; }
///
/// 单据类型
///
public string Type { get; set; }
}
public class ManaelOutBackRequest
{
///
/// 箱号
///
public string HuNr { get; set; }
///
/// 出库类型
///
public string Type { get; set; }
///
/// 出库时间
///
public string OutTime { get; set; }
}
}