using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.APIModel
{
public class BatchUpdateSealBoxConfiguredRequest
{
///
/// 判断当前的封箱任务是否 是带封箱状态
///
public long SealBoxId { get; set; }
public string ShopId { get; set; }
public IList UpdateSealBoxConfiguredDatas { get; set; }
}
public class UpdateSealBoxConfiguredDataRequest
{
public long TaskId { get; set; }
///
/// sku总量任务量
///
public int SkuCount { get; set; }
public IList SealBoxConfiguredWareHourseRequests { get; set; }
}
public class SealBoxConfiguredWareHourseRequest : WareHourseData
{
///
///封箱id
///
public long? SealBoxId { get; set; }
///
///待封箱 = 0, 待落仓 = 1, 待完结 = 2
///
public PositionState? WareState { get; set; }
}
}