using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.APIModel.Request
{
public class CreatePackTaskV2Request
{
///
/// 店铺Id
///
public string ShopId { get; set; }
///
/// skuid
///
public string SkuId { get; set; }
///
/// 品名
///
public string BrandName { get; set; }
///
/// sku数量
///
public int SkuCount { get; set; }
///
/// 落仓(本地仓=0,齐越仓=1,京东仓=2)
///
public PositionType PositionType { get; set; }
///
/// 打包类型(单件=0,多件=1)
///
public int PackType { get; set; }
///
/// 配件数量
///
public int GoodsNumber { get; set; }
///
/// sku配件名称
///
public string SkuGoodsTitle { get; set; }
///
/// 基础包装(快递袋=0,纸箱=1,麻袋=2)
///
public int BasicPack { get; set; }
///
/// 增量耗材
///
public string Increment1 { get; set; }
///
/// 注意事项
///
public string MarkMessage { get; set; }
///
/// 对接人(发布任务人)
///
public string UserId { get; set; }
///
///条形码Id
///
public long? BarCodeId { get; set; }
///
/// 合格证Id
///
public string CerId { get; set; }
///
/// 是否需要条形码
///
public bool? NeedBar { get; set; }
///
/// 是否需要合格证
///
public bool? NeedCer { get; set; }
///
/// 合格证位置
///
public int? CertificatePosition { get; set; }
#region 更新数据
///
/// 货号
///
public string ProductNo { get; set; }
///
/// 图
///
public string Logo { get; set; }
///
/// 名称
///
public string SkuName { get; set; }
///
/// 品牌
///
public string Brand { get; set; }
#endregion
///
/// 配送方式
///
public DistributionMode? DistributionMode { get; set; }
///
/// 绑定快递单号
///
public List WayBillNoList { get; set; }
}
}