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.
39 lines
1.0 KiB
39 lines
1.0 KiB
2 years ago
|
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>
|
||
|
///待封箱 = 0, 待落仓 = 1, 待完结 = 2
|
||
|
/// </summary>
|
||
|
public PositionState? WareState { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|