步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB

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